{{ error }}
{% else %}{{ appointment.availability.name }}
| Datum | Uhrzeit | Ort |
|---|---|---|
| {{ d.date|date('d.m.Y') }} | {{ d.startTime|date('H:i') }} - {{ d.endTime|date('H:i') }} | {{ d.location }} |
{{ appointment.startTime|date('d.m.Y') }}, {{ appointment.startTime|date('H:i') }}–{{ appointment.endTime|date('H:i') }} Uhr
{% set duration = appointment.endTime.diff(appointment.startTime) %}{{ duration.h }}h {{ duration.i }}min
{{ appointment.availability.location.name }}
{{ field.label }}: {% if field.type == 'checkbox' %} {{ field.value ? 'Ja' : 'Nein' }} {% else %} {{ field.value }} {% endif %}
{% endfor %}Buchungsnummer: {{ appointment.bookingToken }}
Status: {% if appointment.status == 'pending' %} Ausstehend {% elseif appointment.status == 'verified' %} Bestätigt {% elseif appointment.status == 'confirmed' %} Bestätigt {% else %} {{ appointment.status }} {% endif %}
Buchungsdatum: {{ appointment.createdAt|date('d.m.Y H:i') }}
Sie erhalten in Kürze eine E-Mail mit allen Details zu Ihrem Termin.
{% endif %} {% endif %}