diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2008-09-16 16:43:32 +1000 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2008-09-16 16:43:32 +1000 |
commit | 6034b55eee81c82058615f2a349d6c64cfb61e08 (patch) | |
tree | c3dd41d7a1337033ba99ec6e78105bf2932f822f /templates | |
parent | 7c9b2f902062ba84cfa327ccdba971920522cb50 (diff) | |
download | patchwork-6034b55eee81c82058615f2a349d6c64cfb61e08.tar patchwork-6034b55eee81c82058615f2a349d6c64cfb61e08.tar.gz |
Add 404 template
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/404.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..fe2b0e4 --- /dev/null +++ b/templates/404.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% block title %}404: File not found{% endblock %} +{% block heading %}404: File not found{% endblock %} + +{% block body %} + +<p>The page URL requested (<code>{{ request_path }}</code>) does not exist.</p> + +{% endblock %} |