blob: 0437552b641f3ff522f7cda1fdf8c650d73f16e1 (
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 %}
|