{# The error state every page shares (UI standards §6): what failed, why, and what to do, with the error code and the request ID a person can quote. #} {% extends "base.html" %} {% from "mirrorwall/components.html" import kv_list %} {% set page_title = "Error" %} {% block content %}

{{ status_code }} — {{ code }}

{{ message }}

{{ kv_list([ {"label": "Request ID", "value": request_id}, {"label": "Path", "value": path}, ]) }}

Back to projects

{% endblock %}