{% extends 'layout_admin.html.twig' %}
{% block content %}
| Basispreis für {{ priceBreakdown.includedPax }} Pers. | {{ (priceBreakdown.basePrice / 100) | format_currency(currency) }} |
| Aufpreis Personenzahl für {{ priceBreakdown.effectivePax - priceBreakdown.includedPax }} Pers. | {{ (priceBreakdown.additionalPersonsPrice / 100) | format_currency(currency) }} |
| Aufpreis Kurzzeit | {{ (priceBreakdown.shortTermSurcharge / 100) | format_currency(currency) }} |
| Verpflegung | {{ (priceBreakdown.boardPrice / 100) | format_currency(currency) }} |
| Verpflegungs-Aufschlag für Gruppen unter {{ priceBreakdown.undersubscriptionThreshold }} Personen | {{ (priceBreakdown.undersubscriptionSurcharge / 100) | format_currency(currency) }} |
| {{ service.label }} | {{ (service.price / 100) | format_currency(currency) }} |
| Strom- und Abfallgebühren | {{ (priceBreakdown.runningCosts / 100) | format_currency(currency) }} |
| Gesamtpreis zzgl. ortsabhängiger Gebühren | {{ (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 ?? priceBreakdown.total) / 100) | format_currency(currency) }} |
{{ booking.remarks | nl2br }}
Gültig bis {{ accessLinkExpiresAt | date('d.m.Y') }} {% if accessLinkExpiresAt < date() %} (abgelaufen) {% endif %}
{% else %}Es wurde noch kein Zugangslink generiert.
{% endif %}