{% extends 'admin_base.html.twig' %} {% block title %}Bewegungszentrum - Buchungen{% endblock %} {% block header_title %}Bewegungszentrum - Buchungen{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block content %}

Bewegungszentrum - Buchungen

Verwalten Sie alle Buchungen für das Bewegungszentrum

{{ stats.total }}
Gesamt Buchungen
{{ stats.unter_vorbehalt }}
Unter Vorbehalt
{{ stats.gebucht }}
Bestätigt
{{ stats.upcoming }}
Kommende
Alle Buchungen
{% if hasOutlookSync %} CSV Export Events prüfen {% endif %}
{% for booking in bookings %} {% set activeStaffMembers = booking.activeStaffMembers %} {% set registeredStaff = activeStaffMembers|length %} {% set requiredStaff = booking.eventPackage.staffRequired %} {% else %} {% endfor %}
Datum Uhrzeit Geburtstagskind Erziehungsberechtigter Paket Dauer/Preis Personal Status Aktionen
{{ booking.selectedDate|date('d.m.Y') }} {{ booking.selectedStartTime|date('H:i') }} - {{ booking.selectedEndTime|date('H:i') }} {{ booking.childFirstName }} {{ booking.childLastName }}
{{ booking.childAge }} Jahre {% if booking.childGender %} | {{ booking.childGender|replace({'maennlich':'Männlich','weiblich':'Weiblich','divers':'Divers'}) }}{% endif %}
{{ booking.parentFirstName }} {{ booking.parentLastName }}
{{ booking.parentEmail }}
{{ booking.parentPhone }}
{{ booking.eventPackage.displayName }} {{ booking.duration.formattedDuration }}
{{ booking.duration.formattedPrice }}
{{ registeredStaff }} / {{ requiredStaff }} {% if registeredStaff < requiredStaff %} {% endif %}
{% for staff in activeStaffMembers %} {{ staff.firstName }} {{ staff.lastName|slice(0, 1) }}.
{% endfor %}
{{ booking.statusLabel }} {% if booking.status == 'unter_vorbehalt' %} {% endif %} {% if booking.status != 'storniert' %} {% endif %} {% if hasOutlookSync and booking.status != 'storniert' %} {% endif %}
Keine Buchungen vorhanden
Für diesen Bereich sind keine Buchungen vorhanden.
{% endblock %}