{% 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 {{ discount.label }} {{ discount.percent }} % | – {{ (discount.amount / 100) | format_currency(currency) }} |
| Gesamtpreis nach Rabatt | {{ (priceBreakdown.discountedTotal / 100) | format_currency(currency) }} |
{{ booking.remarks | nl2br }}
Der Kunde hat die Buchung verbindlich abgeschickt, aber noch keine Bestätigung erhalten. Prüfe Leistungen und Kapazitäten und bestätige die Buchung erst dann.
Gültig bis {{ accessLinkExpiresAt | date('d.m.Y') }} {% if accessLinkExpiresAt < date() %} (abgelaufen) {% endif %}
{% else %}Es wurde noch kein Zugangslink generiert.
{% endif %}