{% extends 'layout_admin.html.twig' %} {% block content %} {% set back_params = { 'id': booking.id } %} {% if app.request.query.get('r') %} {% set back_params = back_params | merge({ 'r': app.request.query.get('r') }) %} {% endif %} {{ booking.recordLabel }} {{ booking.groupName }}

{{ booking.accommodation.name }} {# Only an Entwurf may still move house — see ChangeAccommodationController. #} {% if booking.draft %} {% endif %}

{% form_theme form 'forms_admin.html.twig' %} {{ form_start(form) }}

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.totalDiscountLabel) }} {{ form_row(form.totalDiscountAmount) }}
{{ form_row(form.remarks) }}
zurück
{{ form_rest(form) }} {{ form_end(form) }} {% endblock %}