{% extends "page.html" %} {% if page.termine is defined %} {% set date_format = "%d.%m." %} {% set time_format = "%H:%M" %} {% block content_body %} {% for t in page.termine %} {% endfor %}
Wann & Wo Was & Wieso
{{ t.startdate | strftime(date_format) }}{% if t.enddate is defined %}–{{t.enddate | strftime(date_format) }}{% elif t.starttime is defined %} {{ t.starttime | strftime(time_format) }}{% endif %}
{{ t.location }}

{{ t.summary }} {% if "Moderation" in t.categories %}(Moderation){%endif%}

{% if t.description is defined %}

{{ t.description | replace("\n\n", "

") | replace("\n", "
") | replace("


", "

")}}

{% endif %} {% if t.attach is defined %}

Mehr Infos

{% endif %}
{% endblock content_body %} {% if page.written_at is defined %} {% block content_footer %}

Letzte Aktualisierung: {{ page.written_at | strftime("%d.%m.%Y, %H:%M Uhr") }}

{% endblock content_footer %} {% endif %} {% endif %}