aboutsummaryrefslogtreecommitdiff
path: root/djangopypi/templates/500.html
diff options
context:
space:
mode:
Diffstat (limited to 'djangopypi/templates/500.html')
-rw-r--r--djangopypi/templates/500.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/djangopypi/templates/500.html b/djangopypi/templates/500.html
new file mode 100644
index 0000000..b30e431
--- /dev/null
+++ b/djangopypi/templates/500.html
@@ -0,0 +1,12 @@
1{% extends "admin/base_site.html" %}
2{% load i18n %}
3
4{% block breadcrumbs %}<div class="breadcrumbs"><a href="/">{% trans "Home" %}</a> &rsaquo; {% trans "Server error" %}</div>{% endblock %}
5
6{% block title %}{% trans 'Server error (500)' %}{% endblock %}
7
8{% block content %}
9<h1>{% trans 'Server Error <em>(500)</em>' %}</h1>
10<p>{% trans "There's been an error. It's been reported to the site administrators via e-mail and should be fixed shortly. Thanks for your patience." %}</p>
11
12{% endblock %}