{% extends 'public/cancellation/public_base.html.twig' %} {% block title %}Meine Buchungen - Übersicht{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block content %}
Neue Buchungsnummer eingeben

Meine Buchungen

Übersicht über alle Ihre Termine und Buchungen

Willkommen, {{ customer.firstName }} {{ customer.lastName }}!

Buchungsnummer: {{ bookingNumber }}

{{ stats.total }}
Gesamt
{{ stats.active }}
Aktiv
{{ stats.cancelled }}
Abgesagt
{{ stats.completed }}
Abgeschlossen
{% if groupedAppointments is empty %}

Keine Buchungen gefunden

Es wurden keine Buchungen für diese Buchungsnummer gefunden.

Neue Buchungsnummer eingeben
{% else %} {% for courseId, courseData in groupedAppointments %} {% set course = courseData.course %} {% set appointments = courseData.appointments %}
{{ course.name }}
{{ course.type|title }}
{{ course.location ? course.location.name : 'Standort nicht zugewiesen' }}
Max. {{ course.maxSlots }} Teilnehmer
{% if course.targetGroup %}
{{ course.targetGroup }}
{% endif %}
{{ appointments|length }} Termin{{ appointments|length != 1 ? 'e' : '' }}
{% if course.location %}
Standort-Details
{{ course.location.name }}
{{ course.location.address }}
{{ course.location.postalCode }} {{ course.location.city }}
{% if course.location.phone or course.location.email %}
{% if course.location.phone %} {% endif %} {% if course.location.email %} {% endif %}
{% endif %} {% if course.location.description %}
{{ course.location.description }}
{% endif %}
{% endif %}
Ihre Termine:
{% if courseData.courseDates is defined and courseData.courseDates|length > 0 %}
{% for d in courseData.courseDates %} {% endfor %}
Datum Uhrzeit Ort
{{ d.date|date('d.m.Y') }} {{ d.startTime|date('H:i') }} - {{ d.endTime|date('H:i') }} {{ d.location }}
{% else %}

Keine Termine gefunden

Es wurden keine Termine für diesen Kurs gefunden.

{% endif %}
{% endfor %} {% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}