comparison templates/404.html @ 174:e40d79359d07

Make 400, 500 error pages work again
author dellsystem <ilostwaldo@gmail.com>
date Sat, 20 Oct 2012 13:07:44 -0400
parents eb3371142f4f
children
comparison
equal deleted inserted replaced
173:b5e9ad94da00 174:e40d79359d07
1 {% extends "base.djhtml" %} 1 {% extends "base.djhtml" %}
2 2
3 {% block title %} 3 {% block title %}
4 Object not found 4 Page not found
5 {% endblock %} 5 {% endblock %}
6 6
7 {% block boxtitle %} 7 {% block content %}
8 Object not found 8 <h1>Page not found</h1>
9 {% endblock %}
10
11 {% block boxcontents %}
12 <p> 9 <p>
13 The resource you were looking for is unavailable. If you think this 10 The page you were looking for is unavailable. If you think this
14 is our fault, please let us know. 11 is our fault, please let us know.
15 </p> 12 </p>
16 {% endblock %} 13 {% endblock %}