19 lines
372 B
HTML
19 lines
372 B
HTML
{% extends "base.html" %}
|
||
{% load i18n %}
|
||
|
||
{% block breadcrumbs %}
|
||
<li><a href="{% url 'home' %}">{% trans "Bad request" %}</a></li>
|
||
{% endblock %}
|
||
|
||
{% block content %}
|
||
<div class="container">
|
||
<h2>{% trans "Bad request" %}</h2>
|
||
|
||
<p>
|
||
{% blocktrans %}We’re sorry but something appears to be wrong with the request you made.{% endblocktrans %}
|
||
</p>
|
||
|
||
</div>
|
||
|
||
{% endblock %}
|