summaryrefslogtreecommitdiffstats
path: root/templates/404.html
blob: d24edaf0a478272fe928070478dc5b5e4c37060a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!-- template 404.html -->
{% extends "base_content.html" %}
{% load i18n %}
{% block title %}{% spaceless %}404 Error{% endspaceless %}{% 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">
    404 Not Found
</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="/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>
            </u>
        </div>
        <script type="text/javascript">
            var GOOG_FIXURL_LANG = 'zh-cn';
            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" %} » </li>
            <li><a href="/questions">{% trans "see all questions" %} » </a></li>
            <li><a href="/tags/">{% trans "see all tags" %} » </a></li>
        </u>
    </div>

</div>
{% endblock %}
<!-- end template 404.html -->