Files
komp_ac/web/templates/ui/error.html
2026-08-14 20:35:37 +02:00

15 lines
347 B
HTML

{# Load failures that are not worth a redirect — crate::ui::ErrorPage #}
{% extends "ui/base.html" %}
{% block title %}{{ heading }}{% endblock %}
{% block content %}
<main>
<div class="error-page">
<h1>{{ heading }}</h1>
<p>{{ message }}</p>
<a href="/admin">{{ nav.tr("ui-back-to-admin") }}</a>
</div>
</main>
{% endblock %}