{% block content %} {% if days is defined and days|length %}
{% for day,bookings in days %}

{{ day|date('d.m.Y') }}

{% for booking in bookings %}
Uhrzeit {{ booking.slot.time|date('H:i') }}
Gebuchte Behälterkapazität {{ booking.behaelter }}
Anliefernde Sorten {{ booking.sorte|join(', ') }}
{% endfor %}
{% endfor %}
{% endif %} {% endblock %}