Kontaktdaten
{{ form_row(form.groupName) }}
{{ form_row(form.salutation) }}
{{ form_row(form.firstName) }}
{{ form_row(form.lastName) }}
{{ form_row(form.email) }}
{{ form_row(form.phone) }}
{{ form_row(form.street) }}
{{ form_row(form.zip) }}
{{ form_row(form.city) }}
Reisedaten
{{ form_row(form.dateFrom) }}
{{ form_row(form.dateTo) }}
{{ form_row(form.paxCount) }}
{{ form_row(form.minorsCount) }}
{{ form_row(form.childrenCount) }}
{% if form.boardService is defined or form.selectedAdditionalServices is defined %}
Leistungen
{% if form.boardService is defined %}
{{ form_row(form.boardService) }}
{% endif %}
{% if form.selectedAdditionalServices is defined %}
{{ form_row(form.selectedAdditionalServices) }}
{% endif %}
{% endif %}
Status & Rabatt
{# Read-only: the status only ever moves through a named action on the detail page,
so that it cannot be set without the email and timestamp that belong to it. #}
Status:
{% include 'admin/accommodation_booking/_status_label.html.twig' %}
· Herkunft: {{ booking.origin.label }}
{% if booking.acceptedAt is not null %}
Angenommen am {{ booking.acceptedAt | date('d.m.Y, H:i') }}
{% endif %}
{% if booking.confirmedAt is not null %}
Bestätigt am {{ booking.confirmedAt | date('d.m.Y, H:i') }}
{% endif %}
{% if form.managedBy is defined %}
{{ form_row(form.managedBy) }}
{% endif %}
{{ form_row(form.accommodationDiscount) }}
{{ form_row(form.boardServiceDiscount) }}
{{ form_row(form.additionalServicesDiscount) }}
{{ form_row(form.remarks) }}