{% extends 'admin_base.html.twig' %} {% block title %}{{ course.name }} - Absagen{% endblock %} {% block content %}

Absagen - {{ course.name }}

Übersicht aller abgesagten Buchungen für diesen Kurs

Zurück zu Details
{{ cancelledAppointments|length }}
Vollständig abgesagt
{{ partialCancellations|length }}
Teilabmeldungen
{{ course.name }}
Kurs
{% if course.location %} {{ course.location.name }} {% else %} N/A {% endif %}
Standort
{% if partialCancellations|length > 0 %}
Teilabmeldungen ({{ partialCancellations|length }})
{% for appointment in partialCancellations %} {% set customer = appointment.customer %} {% endfor %}
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 }}
{% else %} Keine Notizen {% endif %}
{% endif %}
Vollständig abgesagte Buchungen
{% for appointment in cancelledAppointments %} {% set customer = appointment.customer %} {% else %} {% endfor %}
Buchungsnummer Name E-Mail 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 Absagen

Für diesen Kurs sind keine abgesagten Buchungen vorhanden.

{% if cancelledAppointments|length > 0 %}
Absage-Statistiken

Gesamt abgesagt: {{ cancelledAppointments|length }}

Kurs: {{ course.name }}

{% if course.location %}

Standort: {{ course.location.name }}

{% endif %}
Hinweise

Diese Übersicht zeigt alle abgesagten Buchungen für den Kurs "{{ course.name }}". Abgesagte Buchungen können nicht wiederhergestellt werden.

{% endif %}
{% endblock %}