blob: 891674e2fadee76629886f9791bc72968d18b96b (
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
|
<!-- pagenotfound.html - this text visible because this template has been included -->
{% extends "expobase.html" %}
{% block extrahead %}
<style>
div#editLinks {
position: absolute;
background: #999;
bottom:0px;
right:0px;
font-family: "Courier New", Courier, monospace;
filter:alpha(opacity=75);
-moz-opacity:.75;
opacity:.75;
text-align:right;
}
div#editLinks a{
color:#FFF;
}
</style>
{% endblock %}
{% block title %}Page not found '{{ path }}'{% endblock %}
{% block body %}
<h1>Page not found '{{ path }}'</h1>
<div >
{% if user.username %}user: '{{ user.username }}'
| <a <a href='/accounts/logout/'>Log out</a>
{% else %} <a href='/accounts/login/'>Log in</a>
{% endif %}
</div>
<p>Probably a mistake.
This page does not exist.
Did you mistype the URL '<b>{{ path }}</b>' ?
{% if user.username %}
<p>
If you do want to create this page, click <a href="{%url "editexpopage" path %} ">this link</a>.
{% endif %}
<p>
<p>
<h3>Did you get lost on the plateau?</h3>
<p>
<img align=center src="/handbook/i/204-area.png">
{% include "menu.html" %}
{% endblock %}
|