{% block filter %}
{# Todo: Future feature #}
{##}
{% endblock %}
{% block content %}
{% if days is defined and days|length %}
{% for day,slots in days %}
{{ day|date('d.m.Y') }}
{% for slot in slots %}
Uhrzeit ab
{{ slot.time|date('H:i') }}
Uhrzeit bis
{{ (slot.time + slot.duration * 60)|date('H:i') }}
Verfügbare Bottiche
{{ slot.behaelterAvailable }}
Standort
{{ slot.standort }}
{% if slot.anmerkungen is defined and slot.anmerkungen %}
{% endif %}
{% endfor %}
{% endfor %}
{% else %}
Derzeit sind keine buchbaren Anlieferungszeiten verfügbar
Sie können uns auch gerne anrufen.
{% endif %}
{% endblock %}
{% block script %}
{##}
{% endblock %}