blob: bf0551a2040e8db691cbfd50552bb463009dd8da (
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 "gstudio/skeleton.html" %}
{% load i18n gstudio_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 gstudio_nodetype_archive_index %}" title="{% trans "Blog index" %}">
{% trans "Blog index" %}
</a>
</li>
<li>
<a href="{% url gstudio_sitemap %}" title="{% trans "Sitemap" %}">
{% trans "Sitemap" %}
</a>
</li>
</ul>
</div>
<h3>{% trans "Recent node types" %}</h3>
<div class="recents">
{% get_recent_nodetypes 5 %}
</div>
<h3>{% trans "Search" %}</h3>
<div class="search">
<form method="get" id="searchform" action="{% url gstudio_nodetype_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 %}
|