]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/500.html
3300b8e91a8ed4796972e8955c2f97b549043352
[osqa.git] / forum / skins / default / templates / 500.html
1 {% extends "base_content.html" %}
2 <!-- template 500.html -->
3 {% load i18n %}
4 {% block title %}{% spaceless %}500 Error{% endspaceless %}{% endblock %}
5 {% block forejs %}
6         <script type="text/javascript">
7         $().ready(function(){
8             $("#linkPrevious").bind("click", back=function(){history.go(-1);})            
9         });
10          
11         </script>
12 {% endblock %}
13 {% block content %}
14 <div id="main-bar" class="">
15     <h3>
16         500 Server Error
17     </h3>
18
19 </div>
20 <div id="main-body" class="headNormal">
21     <div style="padding:5px 0px 10px 0;line-height:25px">
22         <h3>{% trans "sorry, system error" %}</h3>
23         <br/>
24         {% trans "system error log is recorded, error will be fixed as soon as possible" %}<br/>
25                 {% trans "please report the error to the site administrators if you wish" %}
26         <ul>
27             <li><a href="#" id="linkPrevious">{% trans "back to previous page" %}</a></li>
28             <li><a href="{% url questions %}">{% trans "see latest questions" %}</a></li>
29             <li><a href="{% url tags %}">{% trans "see tags" %}</a></li>
30         </ul>
31     </div>
32
33 </div>
34 {% endblock %}
35 <!-- end template 500.html -->