{% include 'booking/_pagination.html.twig' with { 'current_step': 2 } %}
Teilnehmer:innen
{# Display form-level validation errors #} {% if form.vars.submitted and not form.vars.valid %} {% include '_partials/_alert.html.twig' with { level: 'error', title: 'Bitte überprüfe die Teilnehmerdaten', messages: ['Einige Teilnehmer haben noch unvollständige oder fehlerhafte Angaben. Bitte bearbeite die markierten Teilnehmer.'] } %} {% endif %}
{% for cardData in bookingCreateContext.cardsData %}
{% include 'booking/_participant_card.html.twig' with {
'cardData': cardData,
'index': loop.index0,
'participantNumber': loop.index,
'mode': 'create',
'isSubmitted': bookingCreateContext.isSubmitted,
'hintLabel': loop.index0 == 0 and bookingCreateContext.familyInsuranceUpgradeAvailable
? 'Familienversicherung möglich - jetzt wechseln'
: null
} %}
{% endfor %}