{% extends 'admin_base.html.twig' %} {% block title %}Kursteilnehmer – Fit wie ein Fisch{% endblock %} {% block header_title %}Kursteilnehmer{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block content %} {% set actions %} CSV {{ booked }}/{{ course.maxCapacity }} {% endset %} {% include 'admin/fisch/_fisch_page_header.html.twig' with { title: course.pool.name ~ ' · ' ~ course.startTimeFormatted, icon: 'users', subtitle: course.ageGroupLabel ~ ' — Teilnehmer dieses Kurs-Slots', breadcrumb_current: 'Kursteilnehmer', actions_html: actions } %} {% include 'admin/fisch/_fisch_demo_banner.html.twig' %}
Zur Kursübersicht
{% for p in participants %} {% else %} {% endfor %}
Kind Geburtsdatum Erziehungsberechtigte Kontakt Adresse Status Details
{% if p.institutionName %}
{{ p.institutionName }}
{% endif %}
{{ p.birthDate|date('d.m.Y') }} {{ p.guardianName }} {{ p.parentEmail }}
{{ p.phone ?: 'kein Telefon' }}
{{ p.address|nl2br }} {% if p.status == 'pending' %} {{ p.statusLabel }} {% if p.pendingUntil %}
bis {{ p.pendingUntil|date('d.m.Y H:i') }}
{% endif %} {% else %} {{ p.statusLabel }} {% endif %} {% if p.hasHealthRestrictions %}
{{ p.healthRestrictions }}
{% endif %}
Noch keine Teilnehmer in diesem Kurs.
{% include 'admin/fisch/_participant_details_modal.html.twig' %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}