blob: 602872a22d3e02a4ceeb4283e110700babc0af00 (
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 content %}
|