ali.xwx.moe/templates/400.html
2024-07-17 18:44:33 -05:00

19 lines
372 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% 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 %}Were sorry but something appears to be wrong with the request you made.{% endblocktrans %}
</p>
</div>
{% endblock %}