diff options
Diffstat (limited to 'templates/404.html')
-rw-r--r-- | templates/404.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..36246de --- /dev/null +++ b/templates/404.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} +{% load wiki_markup %} +{% load link %} + +{% block title %}List of survex files{% endblock %} + +{% block content %} + +<h1>404 - Page not found </h1> + +<h3>Kataster number not found :{{cave}}</h3> +<p>More helpful information will appear here when someone programs it.</p> +<p> +Custom 404 page template/404.html is only activated when DEBUG=False in Django settings. +So this is of very limited usefulness to us as we do not do that with troggle, even in production. +Instead we do not raise the http404 exception in our code, we call our own error-handling display page. +We have not yet done this with all our code though.. +<p> + + +<p><em>This page created 25 March 2021</em></p> +{% endblock %} + |