]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/404.html
Migrate to Django 1.6
[osqa.git] / forum / skins / default / templates / 404.html
1 {% extends "base_content.html" %}
2 <!-- template 404.html -->
3 {% load i18n %}
4 {% block title %}{% trans "404 Error" %}{% endblock %}
5 {% block forestyle%}
6     <style type="text/css">
7                 form input { margin-right: 5px; }
8         </style>
9 {% endblock %}
10 {% block forejs %}
11        <script type="text/javascript">
12         $().ready(function(){
13             $("#linkPrevious").bind("click", back=function(){history.go(-1);})            
14         });
15          
16         </script>
17 {% endblock %}
18 {% block content %}
19 <div id="main-bar" class="headNormal">
20     {% trans "404 Not Found" %}
21 </div>
22 <div id="main-body" class="">
23     <div style="padding:5px 0px 10px 0;line-height:25px;">
24         <h3>{% trans "Sorry, could not find the page you requested." %}</h3>
25         <div style="margin-top:5px">
26         {% trans "This might have happened for the following reasons:" %}<br/>
27             <ul>
28             <li>{% trans "this question or answer has been deleted;" %}</li>
29             <li>{% trans "url has error - please check it;" %}</li>
30             <li>{% trans "if you believe this error 404 should not have occurred, please" %} 
31                                 <a href="{% if settings.CONTACT_URL %}{{ settings.CONTACT_URL }}{% else %}{% url "feedback" %}{% endif %}">{% trans "report this problem" %}</a></li>
32             </ul>
33         </div>
34         <script type="text/javascript">
35             var GOOG_FIXURL_LANG = '{{settings.LANGUAGE_CODE}}';
36             var GOOG_FIXURL_SITE = '{{site_url}}';
37         </script>
38         <script type="text/javascript" src="http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
39         <ul>
40             <li><a href="#" id="linkPrevious">{% trans "back to previous page" %} &raquo;</a></li>
41             <li><a href="{% url "questions" %}">{% trans "see all questions" %} &raquo;</a></li>
42             <li><a href="{% url "tags" %}">{% trans "see all tags" %} &raquo;</a></li>
43         </ul>
44     </div>
45
46 </div>
47 {% endblock %}
48 <!-- end template 404.html -->