|
- {{ booking.createdAt | date('d.m.Y, H:i') }}
+ {{ booking.createdAt | date('d.m.Y, H:i') }}
|
- {{ booking.accommodation.name }}
+ {{ booking.accommodation.name }}
|
- {{ booking.groupName }}
+ {{ booking.groupName }}
|
- {{ booking.dateFrom | date('d.m.Y') }} – {{ booking.dateTo | date('d.m.Y') }}
+ {{ booking.dateFrom | date('d.m.Y') }} – {{ booking.dateTo | date('d.m.Y') }}
|
- {{ booking.paxCount }}
+ {{ booking.paxCount }}
|
- {% if booking.managedBy is not null %}
- {{ booking.managedBy.displayName }}
- {% else %}
- keine Zuordnung
- {% endif %}
+
+ {% if booking.managedBy is not null %}
+ {{ booking.managedBy.displayName }}
+ {% else %}
+ keine Zuordnung
+ {% endif %}
+
|
- {{ booking.recordLabel }} · {% include 'admin/accommodation_booking/_status_label.html.twig' %}
+
+ {{ booking.recordLabel }} · {% include 'admin/accommodation_booking/_status_label.html.twig' %}
+
|
{% set discounts = [] %}
@@ -79,14 +84,14 @@
{% if booking.additionalServicesDiscount is not null %}
{% set discounts = discounts | merge(['Zusatzleistungen ' ~ booking.additionalServicesDiscount ~ '%']) %}
{% endif %}
- {{ discounts | length > 0 ? (discounts | join(', ')) : '–' }}
+ {{ discounts | length > 0 ? (discounts | join(', ')) : '–' }}
|
Details
-
+
bearbeiten
{% if booking.confirmed %}
|