+
+
{{ fewo_lodging.name }}
+
+ {#
+ ********* SLIDER *********
+ #}
+
+
+
+
+
+
+
+
+
+
+
+ {% for lodging_image in fewo_lodging.images %}
+ {# @var image \AppBundle\Entity\FewoLodgingImage #}
+
+ {% endfor %}
+
+
+
+
+
+ Previous
+
+
+
+ Next
+
+
+
+
+
+ {#
+ ********* TAB BAR *********
+ #}
+
+ {% block travel_lodging_program_tab_bar %}
+
+
+
+ {% endblock travel_lodging_program_tab_bar %}
+
+
+
+ {#
+ ********* BESCHREIBUNG *********
+ #}
+
+
+ {#TODO alles wirklich hier? wo bilder?#}
+
+
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 |
+ Preis p.P. pro Nacht |
+ Pauschalpreis |
+ Kaution |
+
+
+
+ {% for price in fewo_lodging.prices %}
+
+ |
+
+ {{ price.season.name }}
+
+ |
+
+ {{ price.season.fromDate|date }}
+ |
+
+ {{ price.season.toDate|date }}
+ |
+
+ {{ price.perNight|number_format(2, ',', '.') }} €
+ |
+
+ {{ price.flatPrice|number_format(2, ',', '.') }} €
+ |
+
+ {% if fewo_lodging.deposit is not empty %}
+ {{ fewo_lodging.deposit|number_format(2, ',', '.') }} €
+ {% endif %}
+ |
+
+ {% endfor %}
+
+
+
Buchung
+ {% include 'default/pages/cms/calendarLodgingProgram.html.twig' %}
+ {% else %}
+ Momentan sind für dieses Programm keine Termine verfügbar.
+ {% endif %}
+
+
+
+
+
+ {{ block('travel_lodging_program_tab_bar') }}
+
+