{% extends "core/base.html" %} {% load core_tags menu_tags static wagtailuserbar wagtailcore_tags wagtailimages_tags %} {% block content %}
{% for event in self.get_events %}
{{ event.start_date|date:"SHORT_DATE_FORMAT" }}{% if event.end_date %} - {{ event.end_date|date:"SHORT_DATE_FORMAT" }}{% endif %}
{{ event.start_date|date:"F Y" }}

{{ event.title }} {% if event.subtitle %}
{{ event.subtitle }}{% endif %}

{% if event.img1_img %} {% image event.img1_img max-250x250 class="img-fluid rounded" %} {% endif %}
{{ event.start_date }}{% if event.end_date %} - {{ event.end_date }}{% endif %}
{% if event.location_name %}

{{ event.location_name }}
{% if event.location_street %}{{ event.location_street }}
{% endif %} {% if event.location_city %}{{ event.location_city }}{% endif %}

{% endif %}
{% if event.is_registration_active %}

Zur Anmeldung

{% endif %} {% if event.flyer.url %}

Programm herunterladen

{% endif %}

Mehr Informationen

{% endfor %}
{% endblock content %}