{% block booking_summary %}
| Zeitraum |
{{ booking.dateFrom|date('d.m.Y') }} – {{ booking.dateTo|date('d.m.Y') }},
{{ booking.nights }} {{ booking.nights != 1 ? 'Nächte' : 'Nacht' }} |
| Anzahl Personen | {{ booking.paxCount }} |
| davon Kinder (0–3 J.) | {{ booking.minorsCount }} |
| davon Kinder (4–{{ ctx.accommodation.maxAdolescentAge }} J.) | {{ booking.childrenCount }} |
|
Basispreis
für {{ ctx.priceBreakdown.includedPax }} Pers. |
{{ (ctx.priceBreakdown.basePrice / 100)|format_currency(currency) }} |
|
Aufpreis Personenzahl
für {{ ctx.priceBreakdown.effectivePax - ctx.priceBreakdown.includedPax }} Pers. |
{{ (ctx.priceBreakdown.additionalPersonsPrice / 100)|format_currency(currency) }} |
| Aufpreis Kurzzeit | {{ (ctx.priceBreakdown.shortTermSurcharge / 100)|format_currency(currency) }} |
| Verpflegung{% if booking.boardServiceLabel %} ({{ booking.boardServiceLabel }}){% endif %} | {{ (ctx.priceBreakdown.boardPrice / 100)|format_currency(currency) }} |
|
Verpflegungs-Aufschlag
für Gruppen unter {{ ctx.priceBreakdown.undersubscriptionThreshold }} Pers. |
{{ (ctx.priceBreakdown.undersubscriptionSurcharge / 100)|format_currency(currency) }} |
| {{ service.label }} | {{ (service.price / 100)|format_currency(currency) }} |
| Strom- und Abfallgebühren | {{ (ctx.priceBreakdown.runningCosts / 100)|format_currency(currency) }} |
|
Gesamtpreis
zzgl. ortsabhängiger Gebühren |
{{ (ctx.priceBreakdown.total / 100)|format_currency(currency) }} |
| Rabatt Unterkunft {{ booking.accommodationDiscount }} % | – {{ (accommodationDiscountAmount / 100)|format_currency(currency) }} |
| Rabatt Verpflegung {{ booking.boardServiceDiscount }} % | – {{ (boardDiscountAmount / 100)|format_currency(currency) }} |
| Rabatt Zusatzleistungen {{ booking.additionalServicesDiscount }} % | – {{ (servicesDiscountAmount / 100)|format_currency(currency) }} |
| Gesamtpreis nach Rabatt | {{ ((booking.totalPrice ?? ctx.priceBreakdown.total) / 100)|format_currency(currency) }} |