{% extends 'admin_base.html.twig' %} {% block title %}{{ course.name }} - Absagen{% endblock %} {% block content %}
Übersicht aller abgesagten Buchungen für diesen Kurs
| Teilnehmer | Buchungsnummer | Abgemeldete Tage | Buchungsdatum | Grund |
|---|---|---|---|---|
|
{{ customer.firstName|first }}{{ customer.lastName|first }}
{{ customer.firstName }} {{ customer.lastName }}
{{ customer.email }} |
{{ appointment.bookingToken|slice(0, 12) }}...
|
{% for day in appointment.cancelledDays %} {{ day }} {% endfor %} | {{ appointment.createdAt|date('d.m.Y H:i') }} |
{% if appointment.notes %}
{{ appointment.notes }}
|
| Buchungsnummer | Name | Telefon | Buchungsdatum | Abmeldungsdatum | Grund | Notizen | |
|---|---|---|---|---|---|---|---|
{{ appointment.bookingToken }}
|
{{ customer.firstName }} {{ customer.lastName }} | {{ customer.email }} | {% if customer.phone %} {{ customer.phone }} {% else %} Nicht angegeben {% endif %} | {{ appointment.createdAt|date('d.m.Y H:i') }} | {% if appointment.updatedAt %} {{ appointment.updatedAt|date('d.m.Y H:i') }} {% else %} Unbekannt {% endif %} | Abgesagt | {% if appointment.notes %} {{ appointment.notes|slice(0, 100) }}{% if appointment.notes|length > 100 %}...{% endif %} {% else %} Keine Notizen {% endif %} |
Keine AbsagenFür diesen Kurs sind keine abgesagten Buchungen vorhanden. |
|||||||
Gesamt abgesagt: {{ cancelledAppointments|length }}
Kurs: {{ course.name }}
{% if course.location %}Standort: {{ course.location.name }}
{% endif %}Diese Übersicht zeigt alle abgesagten Buchungen für den Kurs "{{ course.name }}". Abgesagte Buchungen können nicht wiederhergestellt werden.