8c6d6c6346
the normal base template does quite a lot of stuff and the context / session needs to be prepared for that. in case of errors, we do not want to do any heavy stuff, like accessing the db / session.
15 lines
282 B
HTML
15 lines
282 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ WWW_HOST }} - something went wrong...</title>
|
|
</head>
|
|
<body>
|
|
|
|
{% block error %}
|
|
{% endblock %}
|
|
|
|
<a href="{% url 'home' %}">Back to {{ WWW_HOST }}.</a>
|
|
</body>
|
|
</html>
|