blob: e6fb34acfd0968bfcce718f34e5df14109c93cd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "admin/base_site.html" %}
<!-- LOADING -->
{% load i18n %}
<!-- BREADCRUMBS -->
{% block breadcrumbs %}<div id="breadcrumbs"><a href="/">{% trans "Home" %}</a> › {% trans "Server error" %}</div>{% endblock %}
<!-- TITLE -->
{% block title %}{% trans "Server error (500)" %}{% endblock %}
<!-- CONTENT -->
{% block content %}
<h1>{% trans "Server Error <em>(500)</em>" %}</h1>
<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>
{% endblock %}
|