]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/403.html
Adds a new function in the profile menu for admins to suspend users, indefinetly...
[osqa.git] / forum / skins / default / templates / 403.html
1 {% extends "base_content.html" %}
2 {% load i18n %}
3 {% block title %}{% trans "Forbidden" %}{% endblock %}
4 {% block forestyle%}
5     <style type="text/css">
6                 form input { margin-right: 5px; }
7         </style>
8 {% endblock %}
9 {% block forejs %}
10        <script type="text/javascript">
11         $().ready(function(){
12             $("#linkPrevious").bind("click", back=function(){history.go(-1);})
13         });
14
15         </script>
16 {% endblock %}
17 {% block content %}
18 <div id="main-bar" class="headNormal">
19     {% trans "Forbidden" %}
20 </div>
21 <div id="main-body" class="">
22     <div style="padding:5px 0px 10px 0;line-height:25px;">
23         <h3>{% trans "Sorry, could not find the page you requested." %}</h3>
24         <div style="margin-top:5px">
25         {% trans "This might have happened for the following reasons:" %}<br/>
26             <ul>
27             <li>{% trans "this question or answer has been deleted;" %}</li>
28             <li>{% trans "url has error - please check it;" %}</li>
29             <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>
30             <li>{% trans "if you believe this error 404 should not have occured, please" %}
31                                 <a href="{{feedback_site_url}}" target="_blank">{% 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" %} È</a></li>
41             <li><a href="{% url questions %}">{% trans "see all questions" %} È</a></li>
42             <li><a href="{% url tags %}">{% trans "see all tags" %} È</a></li>
43         </ul>
44     </div>
45
46 </div>
47 {% endblock %}