{% include 'feedback.html.twig' with {'error': error, 'app': app } %}
{{ 'registrationbook.departures'|trans }}
{% for reservation in reservations %}
{{ 'registrationbook.appartment'|trans }}: {{ reservation.appartment.number }}
({{ reservation.startdate|date('d.m.Y') }} - {{ reservation.enddate|date('d.m.Y') }})
{{ 'registrationbook.appartment'|trans }} |
{{ 'appartment.description'|trans }} |
{{ 'reservation.persons'|trans }} |
{{ 'reservation.startdate'|trans }} |
{{ 'reservation.enddate'|trans }} |
{{ reservation.appartment.number }} |
{{ reservation.appartment.description }} |
{{ reservation.persons }} |
{{ reservation.startdate|date('d.m.Y') }} |
{{ reservation.enddate|date('d.m.Y') }} |
{{ 'reservation.preview.customer.inroom'|trans }}
{#
#}
{{ 'reservation.preview.customer.name'|trans }} |
{{ 'customer.birthday'|trans }} |
{{ 'customer.action'|trans }} |
{% for customer in reservation.customers %}
{{ customer.salutation }} {{ customer.firstname }} {{ customer.lastname }} |
{% if customer.birthday %}{{ customer.birthday|date('d.m.Y') }}{% endif %} |
|
{% endfor %}
|
{% else %}
{{ 'registrationbook.noentries'|trans }} |
{% endfor %}
|