{% block filter %}
{% endblock %}
{% block content %}
{% if days is defined and days|length %}
{% for day,slots in days %}
{{ day|date('d.m.Y') }}{{ slots|length }}
{% for slot in slots %}
Uhrzeit
{{ slot.time|date('H:i') }}
Verfügbare Behälterkapazität
{{ slot.behaelterAvailable }}
Verarbeitete Sorten
{{ slot.sorte|join(', ') }}
{% endfor %}
{% endfor %}
{% endif %}
{% endblock %}
{% block script %}
{##}
{% endblock %}