{% extends 'base.html.twig' %} {% block title %}Überbuchte Termine Standort 4{% endblock %} {% block content %}
Termindetails:
{% if entry.availability.startDate %}
{{ entry.availability.startDate|date('d.m.Y') }} - {{ entry.availability.endDate|date('d.m.Y') }}
{% endif %}
{{ entry.availability.startTime|date('H:i') }} - {{ entry.availability.endTime|date('H:i') }}
| # | Name | Status | Buchungszeitpunkt | Warteliste? | |
|---|---|---|---|---|---|
| {{ loop.index }} | {{ app.customer.firstName }} {{ app.customer.lastName }} | {{ app.customer.email }} | {{ app.status }} | {{ app.createdAt ? app.createdAt|date('d.m.Y H:i:s') : '-' }} | {% if loop.index > entry.maxSlots %}Warteliste{% endif %} |