{% extends "django_fundamentals/layouts/auth.html" %} {% comment %} STATUS PAGE — DJANGO LOOKS FOR 400.html AT THE TEMPLATE ROOT (NOT NAMESPACED). Safe to extend a layout: unlike 500, these render with a normal request context. {% endcomment %} {% block head_title %}Bad request · {{ block.super }}{% endblock %} {% block content %}

400

Bad request

That request couldn't be processed. Check the address and try again.

{% include "django_fundamentals/atoms/button.html" with label="Back to home" href="/" variant="secondary" %}
{% endblock %}