]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/404.html
initial import
[osqa.git] / forum / skins / default / templates / 404.html
1 {% extends "base_content.html" %}
2 <!-- template 404.html -->
3 {% load i18n %}
4 {% block title %}{% spaceless %}404 Error{% endspaceless %}{% 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     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 "the page you tried to visit is protected or you don't have sufficient points, see" %} <a href="{% url faq %}"> faq</a>;</li>
31             <li>{% trans "if you believe this error 404 should not have occured, please" %} 
32                                 <a href="{{feedback_site_url}}" target="_blank">{% trans "report this problem" %}</a></li>
33             </u>
34         </div>
35         <script type="text/javascript">
36             var GOOG_FIXURL_LANG = '{{settings.LANGUAGE_CODE}}';
37             var GOOG_FIXURL_SITE = '{{site_url}}';
38         </script>
39         <script type="text/javascript" src="http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
40         <ul>
41             <li><a href="#" id="linkPrevious">{% trans "back to previous page" %} »</li>
42             <li><a href="{% url questions %}">{% trans "see all questions" %} »</a></li>
43             <li><a href="{% url tags %}">{% trans "see all tags" %} »</a></li>
44         </u>
45     </div>
46
47 </div>
48 {% endblock %}
49 <!-- end template 404.html -->