{% extends "@Contao/frontend_module/_base.html.twig" %} {% block content %} {% if error is defined and error %}
{{ error }}
{% elseif form is defined and form %} {{ form_start(form, { action: app.request.uri, attr: { 'aria-live': 'polite' } }) }} {{ form_row(form.title) }} {{ form_row(form.startDate) }} {{ form_row(form.endDate) }} {% if form.organization_ids is defined %} {{ form_row(form.organization_ids) }} {% endif %} {{ form_row(form.location_id) }} {{ form_row(form.url) }} {{ form_end(form) }} {% else %}Kein Formular verfügbar.
{% endif %} {% endblock %}