Added templates for http exceptions.

This commit is contained in:
2018-02-14 16:55:49 +01:00
parent 722871d086
commit 8c3aeca959
5 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{% extends "error_base.html" %}
{% block error-code %}400{% endblock %}
{% block error-title %}Bad Request{% endblock %}
{% block error-heading %}Fehlerhafte Anfrage{% endblock %}
{% block error-body %}<p>Irgendwas ist hier falsch gelaufen.</p>{% endblock %}