Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / django / contrib / admin / templates / admin / 500.html @ 1a305335

History | View | Annotate | Download (555 Bytes)

1
{% extends "admin/base_site.html" %}
2
{% load i18n %}
3
{% load url from future %}
4

    
5
{% block breadcrumbs %}
6
<div class="breadcrumbs">
7
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
8
&rsaquo; {% trans 'Server error' %}
9
</div>
10
{% endblock %}
11

    
12
{% block title %}{% trans 'Server error (500)' %}{% endblock %}
13

    
14
{% block content %}
15
<h1>{% trans 'Server Error <em>(500)</em>' %}</h1>
16
<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>
17

    
18
{% endblock %}