{% extends "@Contao/frontend_module/_base.html.twig" %} {% block content %} {% if error is defined and error %}

{{ error }}

Zurück

{% 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) }} {{ form_row(form.addTime) }} {% if form.organization_ids is defined %} {{ form_row(form.organization_ids) }} {% endif %} {{ form_row(form.location_id) }} {{ form_row(form.type) }} {{ form_row(form.teaser) }} {{ form_row(form.description) }} {{ form_row(form.url) }} {{ form_row(form.addImage) }} {{ form_row(form.termsAccepted) }} {{ form_row(form.isSoldOut) }} {{ form_row(form.isCanceled) }} {{ form_row(form.published) }}
Zurück
{{ form_end(form) }} {% else %}

Kein Formular verfügbar.

{% endif %} {% endblock %}