2011-08-08 12:18:47 +01:00
|
|
|
{% extends "expobase.html" %}
|
|
|
|
{% block title %}Page not found {{ path }}{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
<h1>Page not found {{ path }}</h1>
|
2021-03-31 16:14:36 +01:00
|
|
|
<p>Probably a mistake. But you can use <a href="{%url "editexpopage" path %}">this link</a>
|
2021-03-27 18:22:07 +00:00
|
|
|
<p>
|
2021-03-31 20:18:46 +01:00
|
|
|
or 'Edit this page' in the menu on the left to create this page if you are logged in.
|
2021-03-27 18:22:07 +00:00
|
|
|
<p>If you can't see that option in the menu, then you are not logged in and you can't create anything.
|
2011-08-08 12:18:47 +01:00
|
|
|
{% include "menu.html" %}
|
|
|
|
{% endblock %}
|