{% extends 'base.html.twig' %} {% block title %}Events index{% endblock %} {% block body %}

CurrentEvents:

{# Create new Event-Button for easier access #} Create new Event {# Show as Cards for nice Layout #}
{% for event in events %}
{{ event.name }}
{{ event.name }}
Event-type: {{ event.type }}
Date: {{ event.start ? event.start|date('l, d.m.Y H:i') : '' }}
Location: {{ event.location.streetname }} {{ event.location.housenumber }},
{{ event.location.zipcode }} {{ event.location.cityname }}
{# Details-Button #} Details
{% else %}
No record found
{% endfor %}
{% endblock %}