add 404 and 500 templates

This commit is contained in:
Thomas Steen Rasmussen 2016-06-01 16:56:50 +02:00
parent 39f075e2a3
commit 811fbf702b
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{% extends 'base.html' %}
{% block content %}
<p class="lead">
404 page not found. Sorry about that.
</p>
{% endblock %}

View file

@ -0,0 +1,9 @@
{% extends 'base.html' %}
{% block content %}
<p class="lead">
500 internal server error. Sorry about that. The people responsible have been notified.
</p>
{% endblock %}