{% 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
{% for participant in booking.participants %} {% endfor %}
Nr. Geschlecht Vorname Nachname Geburtsdatum Nationalität
{% if participant.sex == 1 %} männlich {% elseif participant.sex == 2 %} weiblich {% endif %} {{ participant.firstName }} {{ participant.lastName }} {{ participant.birthDate|date }} {{ participant.getNationalityName }}
Mitteilungen / Sonstiges (optional)

{{ booking.comments }}

{% endblock %}