{% extends 'admin_base.html.twig' %} {% block title %}Dashboard{% endblock %} {% block header_title %}Dashboard Übersicht{% endblock %} {% block stylesheets %} {% endblock %} {% block content %}
Neue Buchungen heute
{% if todayAppointmentsCount > 0 %}Neue Buchungen
{% if weekAppointmentsCount > 0 %}Aktive Kurse
Wartende Kunden
{% if waitingListCount > 0 %}Keine aktiven Kurse vorhanden
| Kurs | Standort | Auslastung | Verfügbar | Aktion |
|---|---|---|---|---|
|
{{ item.course.name }}
{{ item.course.type }} |
{{ item.course.location.name }} |
{{ item.bookedCount }}/{{ item.maxSlots }}
|
{{ item.freeSpots }} frei | Buchen |
Alle Kurse sind ausgebucht!
Keine neuen Termine
| Buchungsdatum | Kurs | Kunde | Standort | Status |
|---|---|---|---|---|
|
Gebucht am
{{ appointment.createdAt|date('d.m.Y H:i') }}
|
{{ appointment.availability.name }}
{% if appointment.availability.type == 'event' %}Event {% elseif appointment.availability.type == 'recurring_course' %}Dauerhaft {% elseif appointment.availability.type == 'limited_course' %}Zeitlich begrenzt {% elseif appointment.availability.type == 'holiday_course' %}Ferienkurs {% else %}{{ appointment.availability.type }} {% endif %} {% if appointment.availability.targetGroup %} {{ appointment.availability.targetGroup }} {% endif %} |
{{ appointment.customer.firstName }} {{ appointment.customer.lastName }}
{{ appointment.customer.email }} |
{{ appointment.availability.location.name }} | {% if appointment.status == 'confirmed' %}Bestätigt {% elseif appointment.status == 'pending' %}Ausstehend {% elseif appointment.status == 'cancelled' %}Abgesagt {% else %}{{ appointment.status }} {% endif %} |
Keine Buchungen vorhanden