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

403

Access denied

You don't have permission to view this page. If you think this is a mistake, contact an administrator.

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