{% extends 'layout.html.twig' %} {% block content %} {% include '_partials/_flashes.html.twig' %}

Neue Buchung

Teilnehmer

{{ form_start(form) }} {% do form.participants.setRendered %} {# This block contains the participant form fields #} {% block participants_form %}
{% for participant in form.participants %} {% set participantDataValid = participant.vars.valid %}
Teilnehmer:in {{ loop.index }}
{% endfor %}
{% endblock %}
Zurück
{{ form_rest(form) }} {{ form_end(form) }}
{# This block contains the booking summary #} {% block booking_summary %}

Zusammenfassung

Reise

{{ bookingCreateDto.travelData.label }}

Datum

{{ bookingCreateDto.travelData.dateFrom | date('d.m.Y') }} - {{ bookingCreateDto.travelData.dateTo | date('d.m.Y') }}

Unterkunft

{{ bookingCreateDto.travelData.hotel.name }}

{% if participantsCount > 0 %}

Anzahl Teilnehmer

{{ participantsCount }}

{% endif %}

Zimmer

    {% for roomSelection in bookingCreateDto.selectedRooms %} {% set assignedCount = assignmentCounts[roomSelection.roomId] ?? 0 %}
  • {{ roomSelection.roomLabel }} ({{ assignedCount }}/{{ roomSelection.quantity }})
  • {% endfor %}
{% endblock %}
{% endblock %}