{% block filter %}
{% 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
{{ slot.time|date('H:i') }}
Verfügbare Kapazität
{{ slot.behaelterAvailable }}
{{ slot.sorte|join(', ') }}
Standort
{{ slot.standort }}
Erntearten
{{ slot.ernteart|join(', ') }}
Lagen
{{ slot.lage|join(', ') }}
{% 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 %}