diff options
Diffstat (limited to 'templates/error.django')
| -rw-r--r-- | templates/error.django | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/templates/error.django b/templates/error.django index d38b972..30700a4 100644 --- a/templates/error.django +++ b/templates/error.django @@ -1,10 +1,9 @@ -{% extends 'layouts/generic.django' %} -{% block content %} - <div class="error-page"> - <div class="error-container"> - <h1>{{ ErrorTitle }}</h1> - <p>{{ ErrorMessage }}</p> - <a href="{% url 'auth.login' %}">Go back home</a> - </div> +{% extends 'layouts/generic.django' %} {% block content %} +<div class="error-page"> + <div class="error-container"> + <h1>{{ ErrorTitle }}</h1> + <p>{{ ErrorMessage }}</p> + <a href="{% url 'auth.login' %}">Go back home</a> </div> +</div> {% endblock %} |
