mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
4ad5b68433
Fix the expeditions list Improvements to make it compatiable with django 1.8 Bump the years to add 2018 Update the .hgignore file to ignore junk
16 lines
405 B
HTML
16 lines
405 B
HTML
{% extends "expobase.html" %}
|
|
{% block title %}{{ title }}{% endblock %}
|
|
{% block bodyattrs %}{% if homepage %} id="homepage"{% endif %}{% endblock %}
|
|
{% block body %}
|
|
{{ body|safe }}
|
|
{% if homepage %}
|
|
{% if editable %}
|
|
<a href="{% url "editflatpage" path %}">Edit</a>
|
|
{% endif %}
|
|
{% else %}
|
|
{% if not has_menu %}
|
|
{% include "menu.html" %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endblock %}
|