Browse Source

add (draft) templates for errors 404 and 500 (used by Django if DEBUG is set to False). fixes #42

Natenom/support-murmur-13-1446181288462
Michael Ziegler 15 years ago
parent
commit
a4139c77e1
  1. 5
      template/404.html
  2. 5
      template/500.html

5
template/404.html

@ -0,0 +1,5 @@
{% extends "index.htm" %}
{% block Content %}
I'm not sure what you are looking for, but it isn't here. :(
{% endblock %}

5
template/500.html

@ -0,0 +1,5 @@
{% extends "index.htm" %}
{% block Content %}
Hm, that didn't work. You might want to check the server logs to see why.
{% endblock %}
Loading…
Cancel
Save