bookforge/templates/error.html

17 lines
488 B
HTML
Raw Permalink Normal View History

2026-01-30 10:33:25 +01:00
{% extends "base.html" %}
2026-01-30 19:16:51 +01:00
{% block title %}
{{ t!("error.generic.title_tag") }}
{% endblock %}
2026-01-30 10:33:25 +01:00
{% block main %}
<div class="mt-4 text-center">
2026-01-30 18:23:54 +01:00
<h1>{{ t!("error.generic.title") }}</h1>
2026-01-30 10:33:25 +01:00
<div class="alert alert-danger">
{% for error in state.errors %}
<p>{{ error }}</p>
{% endfor %}
</div>
2026-01-31 18:21:28 +01:00
<a href="{{ router.root_path() }}" class="mt-3 btn btn-info">{{ t!("error.error_404.button") }}</a>
2026-01-30 10:33:25 +01:00
</div>
{% endblock %}