blob: f4813507a090899c09341af0163d1114164458c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{% extends "objectapp/skeleton.html" %}
{% load i18n objectapp_tags %}
{% block breadcrumbs %}
{% trans "Error 500" %}
{% endblock %}
{% block title %}{% trans "Server error" %}{% endblock %}
{% block content %}
<h2>{% trans "Server error" %}</h2>
<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>
<h3>{% trans "Useful links" %}</h3>
<div class="links">
<ul>
<li>
<a href="{% url objectapp_gbobject_archive_index %}" title="{% trans "Blog index" %}">
{% trans "Blog index" %}
</a>
</li>
<li>
<a href="{% url objectapp_sitemap %}" title="{% trans "Sitemap" %}">
{% trans "Sitemap" %}
</a>
</li>
</ul>
</div>
<h3>{% trans "Recent gbobjects" %}</h3>
<div class="recents">
{% get_recent_gbobjects 5 %}
</div>
<h3>{% trans "Search" %}</h3>
<div class="search">
<form method="get" id="searchform" action="{% url objectapp_gbobject_search %}">
<p>
<input type="text" value="{% trans "Keywords..." %}" name="pattern" id="searchbox" onfocus="this.value=''"/>
<input type="submit" class="submitbutton" value="OK" />
</p>
</form>
</div>
{% endblock %}
|