# HG changeset patch # User dellsystem # Date 1350752864 14400 # Node ID e40d79359d075993d992e7849f45e8d585dcf148 # Parent b5e9ad94da00a60204e52a16dd8bd6f37244c105 Make 400, 500 error pages work again diff --git a/templates/404.html b/templates/404.html --- a/templates/404.html +++ b/templates/404.html @@ -1,16 +1,13 @@ {% extends "base.djhtml" %} {% block title %} -Object not found +Page not found {% endblock %} -{% block boxtitle %} -Object not found -{% endblock %} - -{% block boxcontents %} +{% block content %} +

Page not found

- The resource you were looking for is unavailable. If you think this + The page you were looking for is unavailable. If you think this is our fault, please let us know.

{% endblock %} diff --git a/templates/500.html b/templates/500.html --- a/templates/500.html +++ b/templates/500.html @@ -1,13 +1,11 @@ {% extends "base.djhtml" %} + {% block title %} Server error {% endblock %} -{% block boxtitle %} -Oops... -{% endblock %} - -{% block boxcontents %} +{% block content %} +

Oops ...

The server encountered an internal error. If the problem persists, please let us know.