]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/403.html
Migrate to Django 1.6
[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 content %}
10 <div id="main-bar" class="headNormal">
11     {% trans "Forbidden" %}
12 </div>
13 <div id="main-body" class="">
14     <div style="padding:5px 0px 10px 0;line-height:25px;">
15         <h3>{% trans "Sorry, you don't have permissions to access this page." %}</h3>
16         <div style="margin-top:5px">
17         {% trans "This might have happened for the following reasons:" %}<br/>
18             <ul>
19             <li>{% trans "you followed a link on an email, but you're currently logged in as another user;" %}</li>
20             <li>{% trans "there are errors in the url, please confirm it;" %}</li>
21             <li>{% trans "if you believe you shouldn't bee seeing this error, please" %}
22                                 <a href="{% if settings.CONTACT_URL %}{{ settings.CONTACT_URL }}{% else %}{% url "feedback" %}{% endif %}" target="_blank">
23                                     {% trans "report this problem" %}
24                                 </a>
25                         </li>
26             </ul>
27         </div>
28         <ul>
29             <li><a href="{% url "index" %}">{% trans "to home page" %} &raquo;</a></li>
30             <li><a href="{% url "questions" %}">{% trans "see all questions" %} &raquo;</a></li>
31             <li><a href="{% url "tags" %}">{% trans "see all tags" %} &raquo;</a></li>
32         </ul>
33     </div>
34
35 </div>
36 {% endblock %}