mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-23 07:41:52 +00:00
ffb5d7bdda
url in templates now requires quotes roung the first arg USE_TZ added
8 lines
338 B
HTML
8 lines
338 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 %}{% include "menu.html" %}{% endif %}
|
|
{% endblock %}
|