2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 15:21:52 +00:00
troggle/templates/404.html
2021-04-02 20:54:18 +01:00

21 lines
671 B
HTML

{% extends "base.html" %}
{% 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 %}