summaryrefslogtreecommitdiff
path: root/djangoproject/templates/400.html
blob: 79fd91a25cf9dcc1eb4e18ff2ab720b493375a4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends 'base_error.html' %}
{% load i18n %}

{% block title %}{% translate "Bad request" %}{% endblock %}

{% block header %}<h1>400</h1>{% endblock %}

{% block content %}
    <h2>{% translate "Bad request" %}</h2>

    <p>{% translate "Yikes, this was a bad request. Not sure why, but it sure was bad." %}</p>
{% endblock content %}