{# Full-page error, for a failure on a request HTMX did not make (a typed URL, a bookmark, a reload). Same information as the _error.html fragment, same honest status code — only the framing differs. #} {% extends "base.html" %} {% block title %}{{ status_code }} {{ reason }} · Introspect{% endblock %} {% block content %}

{{ status_code }} — {{ reason }}

{{ message }}

Request {{ request_id }}

{% if traceback %}
Traceback
{{ traceback }}
{% endif %}

Back to the dashboard

{% endblock %}