{#
********* SLIDER *********
#}
{#
********* TAB BAR *********
#}
{% block travel_program_tab_bar %}
{#
********* REISEABLAUF *********
#}
{{ travel_program.htmlDescription|raw|keywords }}
{% if travel_program.advices is not empty %}
Hinweise
{% for travel_program_advice in travel_program.advices|trim|split('\n') %}
- {{ travel_program_advice|raw }}
{% endfor %}
{% endif %}
{#
********* LEISTUNGEN *********
#}
Eingeschlossene Leistungen
{% for travel_program_service in travel_program.included|replace({'*': '
'})|split('\n') %}
- {{ travel_program_service|raw }}
{% endfor %}
{% if travel_program.excluded is not empty or travel_program.classDescription is not empty %}
Nicht eingeschlossene Leistungen
{{ travel_program.classDescription|replace({'*': '

'})|raw }}
{% for travel_program_service in travel_program.excluded|replace({'*': '
'})|split('\n') %}
- {{ travel_program_service|raw }}
{% endfor %}
{% endif %}
{#
********* TERMINE UND PREISE *********
#}
{{ travel_program.subtitle }}
{% if travel_program.travelDates is not empty %}
{% set has_three_bed_room = (travel_program.travelDates|first).prices[5] is defined %}
| Nr. |
Beginn |
Ende |
{% if has_three_bed_room %}Preis p.P im Dreibettzimmer | {% endif %}
Preis p.P im Doppelzimmer |
Preis p.P im Einzelzimmer |
Abflugorte / Zuschläge |
Status |
Buchungsformular |
{% for travel_date in travel_program.travelDates %}
{# @var travel_date \AppBundle\Entity\TravelDate #}
| {{ travel_date.name }} |
{{ travel_date.start|date }} |
{{ travel_date.end|date }} |
{% if has_three_bed_room %}
{% if travel_date.prices[5] is defined %}
{% if travel_date.prices[5].effectiveDiscountPrice %}
{% endif %}
ab {{ travel_date.prices[5].effectivePrice|number_format }} €
{% if travel_date.prices[5].effectiveDiscountPrice %}
ab {{ travel_date.prices[5].effectiveDiscountPrice|number_format }} €
{% endif %}
{% endif %}
|
{% endif %}
{% if travel_date.prices[3].effectiveDiscountPrice %}
{% endif %}
ab {{ travel_date.prices[3].effectivePrice|number_format }} €
{% if travel_date.prices[3].effectiveDiscountPrice %}
ab {{ travel_date.prices[3].effectiveDiscountPrice|number_format }} €
{% endif %}
|
{% if travel_date.prices[1].effectiveDiscountPrice %}
{% endif %}
ab {{ travel_date.prices[1].effectivePrice|number_format }} €
{% if travel_date.prices[1].effectiveDiscountPrice %}
ab {{ travel_date.prices[1].effectiveDiscountPrice|number_format }} €
{% endif %}
|
Flughäfen
{% include 'default/components/departuresModal.html.twig' with {
'departures': travel_date.departures,
'id': loop.index0
} %}
|
|
Weiter
|
{% endfor %}
{% else %}
Momentan sind für dieses Programm keine Termine verfügbar.
{% endif %}
{#
********* LANDKARTE *********
#}
{% if travel_program.hasMap %}
{% if travel_program.mapHtml is not empty %}
{{ travel_program.mapHtml|raw|stripslashes }}
{% else %}
{% endif %}
{% endif %}
{#
********* LANDINFOS *********
#}
{% for country in travel_program.countries %}
{{ country.name }}
{{ country.htmlInformation|raw }}
{% endfor %}