{% extends "django_fundamentals/layouts/auth.html" %} {% comment %} STATUS PAGE — DJANGO LOOKS FOR 404.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 %}Page not found · {{ block.super }}{% endblock %} {% block content %}

404

Page not found

We couldn't find the page you were looking for. It may have been moved or deleted.

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