summaryrefslogtreecommitdiffstats
path: root/templates/500.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-02-09 16:48:38 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-02-09 16:48:38 -0500
commit3c4c71fc19865bfb75231c425fae31c6b2c211de (patch)
tree535fc16fef76b1e89e136c3e4a0947fe8613fe01 /templates/500.html
parentbdf1cc4f9dd3f0ac06ba1af3c7d35c72cc358297 (diff)
downloadaskbot-3c4c71fc19865bfb75231c425fae31c6b2c211de.tar.gz
askbot-3c4c71fc19865bfb75231c425fae31c6b2c211de.tar.bz2
askbot-3c4c71fc19865bfb75231c425fae31c6b2c211de.zip
started working towards skinning forum app - first step - move templates to app
Diffstat (limited to 'templates/500.html')
-rw-r--r--templates/500.html35
1 files changed, 0 insertions, 35 deletions
diff --git a/templates/500.html b/templates/500.html
deleted file mode 100644
index 51e73178..00000000
--- a/templates/500.html
+++ /dev/null
@@ -1,35 +0,0 @@
-{% extends "base_content.html" %}
-<!-- template 500.html -->
-{% load i18n %}
-{% block title %}{% spaceless %}500 Error{% endspaceless %}{% endblock %}
-{% block forejs %}
- <script type="text/javascript">
- $().ready(function(){
- $("#linkPrevious").bind("click", back=function(){history.go(-1);})
- });
-
- </script>
-{% endblock %}
-{% block content %}
-<div id="main-bar" class="">
- <h3>
- 500 Server Error
- </h3>
-
-</div>
-<div id="main-body" class="headNormal">
- <div style="padding:5px 0px 10px 0;line-height:25px">
- <h3>{% trans "sorry, system error" %}</h3>
- <br/>
- {% trans "system error log is recorded, error will be fixed as soon as possible" %}<br/>
- {% trans "please report the error to the site administrators if you wish" %}
- <ul>
- <li><a href="#" id="linkPrevious">{% trans "back to previous page" %}</li>
- <li><a href="{% url questions %}">{% trans "see latest questions" %}</a></li>
- <li><a href="{% url tags %}">{% trans "see tags" %}</a></li>
- </u>
- </div>
-
-</div>
-{% endblock %}
-<!-- end template 500.html -->