summaryrefslogtreecommitdiff
path: root/djangoproject/templates/500.html
blob: a590f2be1f7f92bd8c7e4e398248902d29e1f57a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends 'base_error.html' %}
{% load i18n %}

{% block title %}{% translate "Page unavailable" %}{% endblock %}

{% block header %}<h1>500</h1>{% endblock %}

{% block content %}
    <h2>{% translate "Page unavailable" %}</h2>

    <p>{% translate "We're sorry, but the requested page is currently unavailable." %}</p>

    <p>{% translate "We're messing around with things internally, and the server had a bit of a hiccup." %}</p>

    <p>{% translate "Please try again later." %}</p>
{% endblock %}