Zusammenfassung
Reise: {{ bookingCreateDto.travel.label }}
Datum: {{ bookingCreateDto.travel.dateFrom|date('d.m.Y') }} - {{ bookingCreateDto.travel.dateTo|date('d.m.Y') }}
Hotel: {{ bookingCreateDto.travel.hotel.name }}
{% if groupedSelectedRooms.by_room is not empty %}
Zimmer
{% for roomSelection in groupedSelectedRooms.by_room %}
-
{{ roomSelection.quantity }} x {{ roomSelection.roomLabel }}
{% if assignmentCounts is defined and assignmentCounts[roomSelection.roomId] is defined %}
{{ assignmentCounts[roomSelection.roomId] }} belegt
{% endif %}
{% endfor %}
{% endif %}
{% if groupedSelectedRooms.by_pax is not empty %}
Betten
{% for roomSelection in groupedSelectedRooms.by_pax %}
-
{{ roomSelection.quantity }} x {{ roomSelection.roomLabel }}
{% if assignmentCounts is defined and assignmentCounts[roomSelection.roomId] is defined %}
{{ assignmentCounts[roomSelection.roomId] }} belegt
{% endif %}
{% endfor %}
{% endif %}
Anzahl Teilnehmer
{{ participantCount }}