{% extends 'admin_base.html.twig' %} {% block title %}Dashboard{% endblock %} {% block header_title %}Dashboard Übersicht{% endblock %} {% block stylesheets %} {% endblock %} {% block content %}
Schwimmcontainer
Termine & Kurse
Bewegungszentrum
Kurse & Event Center
Fit wie ein Fisch
Buchungstool (Demo)
Kreissportbund
Website & Infos
Heute

{{ todayAppointmentsCount }}

Neue Buchungen heute

{% if todayAppointmentsCount > 0 %}
+{{ todayAppointmentsCount }} heute
{% endif %}
Diese Woche

{{ weekAppointmentsCount }}

Neue Buchungen

{% if weekAppointmentsCount > 0 %}
Ø {{ (weekAppointmentsCount / 7) | number_format(1) }} pro Tag
{% endif %}
Kurse

{{ activeCoursesCount }}

Aktive Kurse

{{ totalCustomers }} Kunden
Warteliste

{{ waitingListCount }}

Wartende Kunden

{% if waitingListCount > 0 %}
Benötigt Aufmerksamkeit
{% endif %}
Schnellaktionen
{# Kunden-Verwaltung - Route noch nicht implementiert #}
Zielgruppen-Übersicht {{ targetGroupStats.total }} Kurse
{% if targetGroupStats.total > 0 %} {% for groupName, groupData in targetGroupStats.groups %} {% if groupData.count > 0 %}
{{ groupName }}
{{ groupData.count }} Kurse
{{ ((groupData.count / targetGroupStats.total) * 100)|number_format(1) }}%
{% endif %} {% endfor %} {% if targetGroupStats.custom > 0 %}
Eigene Zielgruppen
{{ targetGroupStats.custom }} Kurse
{{ ((targetGroupStats.custom / targetGroupStats.total) * 100)|number_format(1) }}%
{% endif %} {% if targetGroupStats.none > 0 %}
Ohne Zielgruppe
{{ targetGroupStats.none }} Kurse
{{ ((targetGroupStats.none / targetGroupStats.total) * 100)|number_format(1) }}%
{% endif %} {% else %}

Keine aktiven Kurse vorhanden

{% endif %}
Kurse mit freien Plätzen Alle Kurse
{% if coursesWithFreeSpots|length > 0 %}
{% for item in coursesWithFreeSpots|slice(0, 5) %} {% endfor %}
Kurs Standort Auslastung Verfügbar Aktion
{{ item.course.name }}
{{ item.course.type }}
{{ item.course.location.name }}
{{ item.bookedCount }}/{{ item.maxSlots }}
{{ item.freeSpots }} frei Buchen
{% else %}

Alle Kurse sind ausgebucht!

{% endif %}
Neueste Termine
{% if todayAppointments|length > 0 %}
{% for appointment in todayAppointments|slice(0, 5) %}
{{ appointment.availability.name }}
{{ appointment.customer.firstName }} {{ appointment.customer.lastName }}
{{ appointment.availability.startTime|date('H:i') }} Uhr
{{ appointment.status }}
{% endfor %}
{% else %}

Keine neuen Termine

{% endif %}
Buchungen ({{ allBookingsTotal }}) Vollansicht
{% if allBookingsLimited %}
Zeigt die neuesten {{ allBookings|length }} von {{ allBookingsTotal }} Buchungen. Alle anzeigen
{% endif %} {% if allBookings|length > 0 %}
{% for appointment in allBookings %} {% endfor %}
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 %}
{% else %}

Keine Buchungen vorhanden

{% endif %}
{% endblock %} {% block javascripts %} {% endblock %}