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

{{ todayBookingsCount }}

Neue Buchungen heute

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

{{ weekBookingsCount }}

Neue Buchungen

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

{{ activeCoursesCount }}

Aktive Kurse

{{ uniqueParticipants }} Teilnehmer
Warteliste

{{ waitingListCount }}

Wartende / Angebote

{% if waitingListCount > 0 %}
Benötigt Aufmerksamkeit
{% endif %}
Kursarten-Übersicht {{ courseTypeStats.total }} Kurse
{% if courseTypeStats.total > 0 %} {% for typeKey, groupData in courseTypeStats.groups %} {% if groupData.count > 0 %}
{{ groupData.label }}
{{ groupData.count }} Kurse
{{ ((groupData.count / courseTypeStats.total) * 100)|number_format(1) }}%
{% endif %} {% endfor %} {% if courseTypeStats.other > 0 %}
Sonstige
{{ courseTypeStats.other }} Kurse
{{ ((courseTypeStats.other / courseTypeStats.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 %} {% endfor %}
Kurs Termin Auslastung Verfügbar Aktion
{{ item.course.name }}
{{ item.course.typeLabel }}
{% if item.course.weekdayLabel %} {{ item.course.weekdayLabel }} {% if item.course.startTime %} {{ item.course.startTime|date('H:i') }} Uhr {% endif %} {% else %} {% endif %}
{{ item.bookedCount }}/{{ item.maxSlots }}
{{ item.freeSpots }} frei Buchen
{% else %}

Keine Kurse mit freien Plätzen (oder Kapazität unbegrenzt).

{% endif %}
Neueste Buchungen heute
{% if todayBookings|length > 0 %}
{% for booking in todayBookings %}
{{ booking.course ? booking.course.name : '—' }}
{{ booking.firstName }} {{ booking.lastName }}
{{ booking.createdAt|date('H:i') }} Uhr
{{ booking.statusLabel }}
{% endfor %}
{% else %}

Keine neuen Buchungen heute

{% endif %}
Buchungen ({{ allBookingsTotal }}) Vollansicht
{% if allBookingsLimited %}
Zeigt die neuesten {{ allBookings|length }} von {{ allBookingsTotal }} Buchungen. Alle anzeigen
{% endif %} {% if allBookings|length > 0 %}
{% for booking in allBookings %} {% endfor %}
Buchungsdatum Kurs Teilnehmer Status Zahlung
Gebucht am {{ booking.createdAt|date('d.m.Y H:i') }}
{{ booking.course ? booking.course.name : '—' }} {% if booking.course %}
{{ booking.course.typeLabel }} {% endif %}
{{ booking.firstName }} {{ booking.lastName }}
{{ booking.email }}
{{ booking.statusLabel }} {% if booking.paymentReceived %} Bezahlt {% else %} Offen {% endif %}
{% else %}

Keine Buchungen vorhanden

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