2021-04-15 12:55:13 +01:00
|
|
|
<!-- expopage.html - this text visible because this template has been included -->
|
2011-08-08 10:58:50 +01:00
|
|
|
{% extends "expobase.html" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block bodyattrs %}{% if homepage %} id="homepage"{% endif %}{% endblock %}
|
|
|
|
{% block body %}
|
2011-06-02 19:16:16 +01:00
|
|
|
{{ body|safe }}
|
2022-03-05 17:05:15 +00:00
|
|
|
{% if homepage %}
|
|
|
|
{% if editable %}
|
|
|
|
<a href="{% url "editexpopage" path %}">Edit</a>
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
2019-02-23 15:30:58 +00:00
|
|
|
{% if not has_menu %}
|
2022-03-05 17:05:15 +00:00
|
|
|
{% include "menu.html" %}
|
2022-03-25 02:05:10 +00:00
|
|
|
{% else %}
|
|
|
|
{% if editable %}<li><a href="{% url "editexpopage" path %}" class="editlink"><strong>Edit this Page</strong></a></li>{% endif %}
|
2019-02-23 15:30:58 +00:00
|
|
|
{% endif %}
|
2022-03-05 17:05:15 +00:00
|
|
|
{% endif %}
|
2011-08-08 10:58:50 +01:00
|
|
|
{% endblock %}
|