summaryrefslogtreecommitdiffstats
path: root/app/templates/404.html
blob: a1526ff97765ba4e3d368afd779a478bed3f5c73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "_layout.html" %}
{% block body %}
<h2>Fehler 403 - Zugang verboten</h2>

<dl>
  <dt>Code</dt>
  <dd>{{error.code}}</dd>

  <dt>Beschreibung</dt>
  <dd>{{error.description}}</dd>
</dl>

<p>
  <a href="{{url_for('main.index')}}">zur Startseite</a>
</p>
{% endblock %}