{% extends "mojo/errors/_base.html" %}
{% comment %}
ONLY the incident reference appears here. No exception text, no stack, no
request path, no internal names — every one of those already lives on the
incident record, which is access-controlled. This page turns "it broke"
into a traceable ticket and leaks nothing else. Do not add detail.
`reference` is absent when incident reporting is disabled or the report
itself failed; the chip is then omitted rather than showing an invented id.
{% endcomment %}
{% block page_title %}Server error{% endblock %}
{% block headline %}Something went wrong on our end{% endblock %}
{% block body %}This one’s ours, not yours. The failure was logged with the reference below — try again in a moment.{% endblock %}
{% block extra %}{% if reference %}REF · {{ reference }}{% endif %}{% endblock %}