{% load cms_tags allink_cms_tags sekizai_tags i18n thumbnail allink_image_tags %} {% for object in object_list %}

{% trans 'Contact' %}

{% if object.title %} {% endif %}

{% if object.subtitle %} {{object.subtitle}}
{% endif %} {% if object.street %} {{object.street}} {{object.street_nr}}
{% endif %} {% if object.zip_code or object.place %} {{object.zip_code}} {{object.place}}
{% endif %} {% if object.map_link %} {% trans "Directions" as link_label %} {% include "partials/buttons/link.html" with link_url=object.map_link link_label=link_label link_classes="text" link_attributes='target="_blank" rel="noopener"' icon="arrow-external" %} {% endif %}

{% if object.email %} {% include "partials/buttons/link.html" with link_prefix="mailto:" link_url=object.email link_label=object.email link_classes="text" %}
{% endif %} {% if object.phone %} {% include "partials/buttons/link.html" with link_prefix="tel:" link_url=object.phone link_label=object.phone_formatted link_classes="text" %}
{% endif %} {% if object.mobile %} {% include "partials/buttons/link.html" with link_prefix="tel:" link_url=object.mobile link_label=object.mobile_formatted link_classes="text" %}
{% endif %} {% if object.fax %} {% include "partials/buttons/link.html" with link_prefix="tel:" link_url=object.fax link_label=object.fax_formatted link_classes="text" %}
{% endif %}

{% trans 'Opening hours' %}

{% for day in object.opening_hours %} {% if day.start_day %}
{{ day.start_day }}{% if day.start_day != day.end_day %} – {{ day.end_day }}{% endif %}
{% if day.morning %}
{{ day.morning }} {% trans 'h' %}
{% endif %} {% if day.afternoon %}
{{ day.afternoon }} {% trans 'h' %}
{% endif %}
{% endif %} {% endfor %} {% if object.holidays_start_date and object.holidays_end_date %}
{% trans 'Holidays' %}
{{ object.holidays_start_date|date:"j. F Y" }} –
{{ object.holidays_end_date|date:"j. F Y" }}
{% endif %}
{% endfor %}