{% extends 'base.html.twig' %} {% block canonical_tag %}{% endblock %} {% block body %}

Vielen Dank für Ihren Buchungsauftrag!

{{ travel_program.title }}

Reiseprogramm {{ travel_program.title }} {#
(Reisebeschreibung aufrufen)#}
Kategorie Standard {# #TODO #}
Reisezeitraum {{ booking.selectedStartDate|date }} - {{ booking.selectedEndDate|date }}
Abflugort {{ booking.selectedDeparture.name }}

Ihr gewähltes Angebot

{% include 'default/components/booking/summary.html.twig' with { 'summary': summary, 'total_price': total_price, 'booking_price_info': booking_price_info, 'show_detail' : false, } %}
Reiseleistungen

Reiseleistungen einblenden

Eingeschlossene Leistungen

    {% for travel_program_service in travel_program.included|replace({'*': ''})|split('\n') %}
  • {{ travel_program_service|raw }}
  • {% endfor %}

Nicht eingeschlossene / zubuchbare Leistungen

    {% for travel_program_service in travel_program.excluded|split('\n') %}
  • {{ travel_program_service|raw }}
  • {% endfor %}
{% if (travel_program.advices is not empty) or (travel_program.generalnote is not empty) %}

Hinweise

    {% if travel_program.generalnote is not empty %} {% for notes in travel_program.generalnote.text|trim|split('\n') %} {% if notes is not empty %}
  • {{ notes|raw }}
  • {% endif %} {% endfor %} {% endif %} {% for travel_program_advice in travel_program.advices|trim|split('\n') %} {% if travel_program_advice is not empty %}
  • {{ travel_program_advice|raw }}
  • {% endif %} {% endfor %}
{% endif %}
Reiseanmelder
Anrede {% if booking.salutation == 1 %} Herr {% elseif booking.salutation == 2 %} Frau {% endif %}
Vorname {{ booking.firstName }}
Nachname {{ booking.lastName }}
Vorname {{ booking.firstName }}
Straße, Hausnummer {{ booking.street }} {{ booking.houseNr }}
PLZ {{ booking.zipCode }}
Ort {{ booking.city }}
Land {{ booking.country }}
Telefon tagsüber {{ booking.phone }}
Fax (optional) {{ booking.fax }}
E-Mail-Adresse {{ booking.mail }}
Reiseteilnehmer
{% set travelerIndex = 0 %} {% set travelerCollection = booking_request.travelers|slice(0, (booking_request.travelerCount + booking_request.childrenCount)) %} {% for room in booking_request.occupiedRooms %} {% if(room.type == 1) %} {% set travelerIndex = travelerIndex + 1 %} {% if(room.child == 1) %} {% set travelerIndex = travelerIndex + 1 %} {% endif %} {% elseif (room.type == 2) %} {% set travelerIndex = travelerIndex + 1 %} {% set travelerIndex = travelerIndex + 1 %} {% if(room.child == 1) %} {% set travelerIndex = travelerIndex + 1 %} {% endif %} {% elseif (room.type == 3) %} {% set travelerIndex = travelerIndex + 1 %} {% set travelerIndex = travelerIndex + 1 %} {% set travelerIndex = travelerIndex + 1 %} {% if(room.child == 1) %} {% set travelerIndex = travelerIndex + 1 %} {% endif %} {% endif %} {% endfor %}
Nr. Zimmertyp Geschlecht Vorname Nachname Geburtsdatum Nationalität
Einzelzimmer Erwachsener {{ travelerCollection[travelerIndex].sex == 1 ? 'männlich' : 'weiblich' }} {{ travelerCollection[travelerIndex].firstName }} {{ travelerCollection[travelerIndex].lastName -}} {{ travelerCollection[travelerIndex].birthDate }} {{ travelerCollection[travelerIndex].nationalityName }}
Einzelzimmer Kind {{ travelerCollection[travelerIndex].sex == 1 ? 'männlich' : 'weiblich' }} {{ travelerCollection[travelerIndex].firstName }} {{ travelerCollection[travelerIndex].lastName -}} {{ travelerCollection[travelerIndex].birthDate }} {{ travelerCollection[travelerIndex].nationalityName }}
Doppelzimmer Erwachsener {{ travelerCollection[travelerIndex].sex == 1 ? 'männlich' : 'weiblich' }} {{ travelerCollection[travelerIndex].firstName }} {{ travelerCollection[travelerIndex].lastName -}} {{ travelerCollection[travelerIndex].birthDate }} {{ travelerCollection[travelerIndex].nationalityName }}
Doppelzimmer Erwachsener {{ travelerCollection[travelerIndex].sex == 1 ? 'männlich' : 'weiblich' }} {{ travelerCollection[travelerIndex].firstName }} {{ travelerCollection[travelerIndex].lastName -}} {{ travelerCollection[travelerIndex].birthDate }} {{ travelerCollection[travelerIndex].nationalityName }}
Doppelzimmer Kind {{ travelerCollection[travelerIndex].sex == 1 ? 'männlich' : 'weiblich' }} {{ travelerCollection[travelerIndex].firstName }} {{ travelerCollection[travelerIndex].lastName -}} {{ travelerCollection[travelerIndex].birthDate }} {{ travelerCollection[travelerIndex].nationalityName }}
Dreibettzimmer Erwachsener {{ travelerCollection[travelerIndex].sex == 1 ? 'männlich' : 'weiblich' }} {{ travelerCollection[travelerIndex].firstName }} {{ travelerCollection[travelerIndex].lastName -}} {{ travelerCollection[travelerIndex].birthDate }} {{ travelerCollection[travelerIndex].nationalityName }}
Dreibettzimmer Erwachsener {{ travelerCollection[travelerIndex].sex == 1 ? 'männlich' : 'weiblich' }} {{ travelerCollection[travelerIndex].firstName }} {{ travelerCollection[travelerIndex].lastName -}} {{ travelerCollection[travelerIndex].birthDate }} {{ travelerCollection[travelerIndex].nationalityName }}
Dreibettzimmer Erwachsener {{ travelerCollection[travelerIndex].sex == 1 ? 'männlich' : 'weiblich' }} {{ travelerCollection[travelerIndex].firstName }} {{ travelerCollection[travelerIndex].lastName -}} {{ travelerCollection[travelerIndex].birthDate }} {{ travelerCollection[travelerIndex].nationalityName }}
Dreibettzimmer Kind {{ travelerCollection[travelerIndex].sex == 1 ? 'männlich' : 'weiblich' }} {{ travelerCollection[travelerIndex].firstName }} {{ travelerCollection[travelerIndex].lastName -}} {{ travelerCollection[travelerIndex].birthDate }} {{ travelerCollection[travelerIndex].nationalityName }}
Mitteilungen / Sonstiges (optional)

{{ booking.comments }}

{% endblock %}