]> git.ozlabs.org Git - patchwork/commitdiff
Add 404 template
authorJeremy Kerr <jk@ozlabs.org>
Tue, 16 Sep 2008 06:43:32 +0000 (16:43 +1000)
committerJeremy Kerr <jk@ozlabs.org>
Tue, 16 Sep 2008 06:43:32 +0000 (16:43 +1000)
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
templates/404.html [new file with mode: 0644]

diff --git a/templates/404.html b/templates/404.html
new file mode 100644 (file)
index 0000000..fe2b0e4
--- /dev/null
@@ -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 %}