src/StartPlatz/Bundle/EventBundle/Resources/views/Default/_registration.anfrage.html.twig line 1

Open in your IDE?
  1. {% import "@StartPlatzEventBundle/Default/_macros.registration.html.twig" as registration %}
  2. <div class="row" id="Anmeldung">
  3.     <div class="col-12">
  4.         <dl class="row">
  5.            {% if application.applicationStatus is defined and application.applicationStatus is not empty %}
  6.                 <dt class="col-3 text-right">{{ phrases.event_phrase_application_status|default('Anmeldestatus:') }}</dt>
  7.                 <dd class="col-9">
  8.                     {% if application.applicationStatus == 'started' %}
  9.                         {{ phrases.event_phrase_status_started|default('Du bist vorgemerkt. Sobald Du Deine E-Mail Adresse bestätigt hast, wird die Anmeldung gültig.') }}
  10.                     {% elseif application.applicationStatus == 'applied' %}
  11.                         {{ phrases.event_phrase_status_applied|default('Du bist angemeldet. Wir freuen uns auf Dich!') }}
  12.                     {% else %}
  13.                         {{ phrases.event_phrase_status_other|default('Du bist angemeldet mit dem Status ==') }} {{ application.applicationStatus }}
  14.                     {% endif %}
  15.                 </dd>
  16.             {% endif %}
  17.         </dl>
  18.         {% if application.applicationStatus is defined and application.applicationStatus is empty %}
  19.             {# show application form #}
  20.             {% set phrase_form_finish_label = "Jetzt anfragen!" %}
  21.             {% if settings.maxNumber > 0 and batch.applicationsCount >= settings.maxNumber %}
  22.                 {% if settings.hasWaitingList %}
  23.                     <h2 class="text-center">{{ phrases.event_phrase_all_seats_booked_waiting_list|default('Alle Plätze sind gebucht - Bitte registriere Dich für die Warteliste') }}</h2>
  24.                     {% include '@StartPlatzRheinlandPitchBundle/Apply/_edit.registration.event.widget.html.twig' %}
  25.                 {% else %}
  26.                     <h2 class="text-center">{{ phrases.event_phrase_all_seats_booked_no_registration|default('Alle Plätze sind gebucht - Eine Anmeldung ist leider nicht möglich') }}</h2>
  27.                 {% endif %}
  28.             {% else %}
  29.                 {% include '@StartPlatzRheinlandPitchBundle/Apply/_edit.registration.event.widget.html.twig' %}
  30.             {% endif %}
  31.         {% endif %}
  32.     </div>
  33. </div>