From a4139c77e135e9c90aa7faed2439f26fb1ad3f7e Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Wed, 21 Oct 2009 10:59:37 +0200 Subject: [PATCH] add (draft) templates for errors 404 and 500 (used by Django if DEBUG is set to False). fixes #42 --- template/404.html | 5 +++++ template/500.html | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 template/404.html create mode 100644 template/500.html diff --git a/template/404.html b/template/404.html new file mode 100644 index 0000000..db52713 --- /dev/null +++ b/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 %} + diff --git a/template/500.html b/template/500.html new file mode 100644 index 0000000..d0f7f42 --- /dev/null +++ b/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 %} +