{% load svg_tags %} {% load i18n %} {% load content_filters %} {% load static %} {% spaceless %}
{% for day, item in contact.opening_hours|as_weekday_iterator %}
{{ day }}:
{% if item.allDay %}
{% translate "All day" %}
{% endif %}
{% if item.closed %}
{% translate "Closed" %}
{% endif %}
{% if item.timeSlots %}
{% for slot in item.timeSlots %}
{{ slot.start }} - {{ slot.end }}
{% endfor %}
{% endif %}
{% endfor %}