summaryrefslogtreecommitdiff
path: root/gstudio/templates/500.html
diff options
context:
space:
mode:
authorgnowgi <nagarjun@gnowledge.org>2012-03-15 16:19:20 +0530
committergnowgi <nagarjun@gnowledge.org>2012-03-15 16:19:20 +0530
commit7a4f561e851fdc7246d804c3abb6748b8a4199a6 (patch)
treed2afc3463fd49625a9be482012f5c3bfcf7c42b9 /gstudio/templates/500.html
downloadgnowsys-7a4f561e851fdc7246d804c3abb6748b8a4199a6.tar.gz
master trunk of gnowsys-studio
Diffstat (limited to 'gstudio/templates/500.html')
-rw-r--r--gstudio/templates/500.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/gstudio/templates/500.html b/gstudio/templates/500.html
new file mode 100644
index 0000000..bf0551a
--- /dev/null
+++ b/gstudio/templates/500.html
@@ -0,0 +1,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 %}