]> git.openstreetmap.org Git - osqa.git/blobdiff - 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
diff --git a/forum/skins/default/templates/403.html b/forum/skins/default/templates/403.html
new file mode 100644 (file)
index 0000000..583e550
--- /dev/null
@@ -0,0 +1,47 @@
+{% extends "base_content.html" %}
+{% load i18n %}
+{% block title %}{% trans "Forbidden" %}{% endblock %}
+{% block forestyle%}
+    <style type="text/css">
+               form input { margin-right: 5px; }
+       </style>
+{% endblock %}
+{% block forejs %}
+       <script type="text/javascript">
+        $().ready(function(){
+            $("#linkPrevious").bind("click", back=function(){history.go(-1);})
+        });
+
+        </script>
+{% endblock %}
+{% block content %}
+<div id="main-bar" class="headNormal">
+    {% trans "Forbidden" %}
+</div>
+<div id="main-body" class="">
+    <div style="padding:5px 0px 10px 0;line-height:25px;">
+        <h3>{% trans "Sorry, could not find the page you requested." %}</h3>
+        <div style="margin-top:5px">
+        {% trans "This might have happened for the following reasons:" %}<br/>
+            <ul>
+            <li>{% trans "this question or answer has been deleted;" %}</li>
+            <li>{% trans "url has error - please check it;" %}</li>
+            <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>
+            <li>{% trans "if you believe this error 404 should not have occured, please" %}
+                               <a href="{{feedback_site_url}}" target="_blank">{% trans "report this problem" %}</a></li>
+            </ul>
+        </div>
+        <script type="text/javascript">
+            var GOOG_FIXURL_LANG = '{{settings.LANGUAGE_CODE}}';
+            var GOOG_FIXURL_SITE = '{{site_url}}';
+        </script>
+        <script type="text/javascript" src="http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
+        <ul>
+            <li><a href="#" id="linkPrevious">{% trans "back to previous page" %} È</a></li>
+            <li><a href="{% url questions %}">{% trans "see all questions" %} È</a></li>
+            <li><a href="{% url tags %}">{% trans "see all tags" %} È</a></li>
+        </ul>
+    </div>
+
+</div>
+{% endblock %}