aboutsummaryrefslogtreecommitdiff
path: root/djangopypi/templates/404.html
diff options
context:
space:
mode:
Diffstat (limited to 'djangopypi/templates/404.html')
-rw-r--r--djangopypi/templates/404.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/djangopypi/templates/404.html b/djangopypi/templates/404.html
new file mode 100644
index 0000000..9bf4293
--- /dev/null
+++ b/djangopypi/templates/404.html
@@ -0,0 +1,12 @@
1{% extends "admin/base_site.html" %}
2{% load i18n %}
3
4{% block title %}{% trans 'Page not found' %}{% endblock %}
5
6{% block content %}
7
8<h2>{% trans 'Page not found' %}</h2>
9
10<p>{% trans "We're sorry, but the requested page could not be found." %}</p>
11
12{% endblock %}