{#
********* SLIDER *********
#}
{#
********* TAB BAR *********
#}
{% block travel_lodging_program_tab_bar %}
{#
********* BESCHREIBUNG *********
#}
Allgemeines
| Typ |
Adresse |
PLZ |
Ort |
Max. Personenanzahl |
Kaution |
|
{{ fewo_lodging.type }}
|
{{ fewo_lodging.adress1 }}
{% if fewo_lodging.adress2 is not empty %}
{{ fewo_lodging.adress2 }}
{% endif %}
|
{{ fewo_lodging.zipCode }}
|
{% if fewo_lodging.city is not empty %}
{{ fewo_lodging.city }}
{% endif %}
|
{% if fewo_lodging.maximumPersons is not empty %}
{{ fewo_lodging.maximumPersons }}
{% endif %}
|
{% if fewo_lodging.deposit is not empty %}
{{ fewo_lodging.deposit|number_format(2, ',', '.') }} €
{% endif %}
|
{% if fewo_lodging.description is not empty %}
{{ fewo_lodging.description|raw }}
{% endif %}
{#
********* AUSSTATTUNG *********
#}
{{ fewo_lodging.equipment|raw }}
{#
********* TERMINE UND PREISE *********
#}
Saisons
{% if fewo_lodging.prices is not empty %}
| Name |
Beginn |
Ende |
Mindestbelegung |
Preis pro Nacht |
Service-Gebühr |
Kaution |
{% for price in fewo_lodging.prices %}
{% if price.season is not empty %}
|
{{ price.season.name }}
|
{{ price.season.fromDate|date }}
|
{{ price.season.toDate|date }}
|
{{ price.season.minimumStay }} {{ price.season.minimumStay < 2 ? 'Nacht' : 'Nächte' }}
|
{{ price.perNight|number_format(2, ',', '.') }} €
|
{{ price.flatPrice|number_format(2, ',', '.') }} €
|
{% if fewo_lodging.deposit is not empty %}
{{ fewo_lodging.deposit|number_format(2, ',', '.') }} €
{% endif %}
|
{% endif %}
{% endfor %}
{% else %}
Momentan sind für dieses Programm keine Termine verfügbar.
{% endif %}
Buchung
Bitte klicken Sie einen Anreisetermin (grüne Zahl), um zur Buchungsmaske zu gelagen.
{% include 'default/pages/cms/calendarLodgingProgram.html.twig' %}