2021-04-15 12:55:13 +01:00
|
|
|
<!-- pagenotfound.html - this text visible because this template has been included -->
|
2011-08-08 12:18:47 +01:00
|
|
|
{% extends "expobase.html" %}
|
2021-04-17 21:24:37 +01:00
|
|
|
{% block extrahead %}
|
|
|
|
<style>
|
|
|
|
div#editLinks {
|
2022-05-19 14:13:35 +01:00
|
|
|
position: absolute;
|
2021-04-17 21:24:37 +01:00
|
|
|
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 %}
|
2024-04-10 20:24:27 +01:00
|
|
|
{% block title %}Page not found '{{ path }}'{% endblock %}
|
2021-04-17 21:24:37 +01:00
|
|
|
|
2011-08-08 12:18:47 +01:00
|
|
|
{% block body %}
|
2024-04-10 20:24:27 +01:00
|
|
|
<h1>Page not found '{{ path }}'</h1>
|
2021-04-17 21:24:37 +01:00
|
|
|
|
2024-04-10 20:24:27 +01:00
|
|
|
<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>
|
|
|
|
|
2021-04-17 21:24:37 +01:00
|
|
|
|
2022-05-19 14:13:35 +01:00
|
|
|
<p>Probably a mistake.
|
|
|
|
This page does not exist.
|
2024-04-10 20:24:27 +01:00
|
|
|
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 %}
|
2021-03-27 18:22:07 +00:00
|
|
|
<p>
|
2024-04-10 20:24:27 +01:00
|
|
|
<p>
|
2021-05-04 02:46:56 +01:00
|
|
|
<p>Did you get lost ?</p>
|
2021-04-17 21:24:37 +01:00
|
|
|
|
|
|
|
<img align=center src="/handbook/i/204-area.png">
|
2011-08-08 12:18:47 +01:00
|
|
|
{% include "menu.html" %}
|
|
|
|
{% endblock %}
|