{% extends "oscar/layout.html" %} {% load i18n %} {% load thumbnail %} {% block extrahead %} {% endblock %} {% block title %} {{ store.name }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% blocktrans with name=store.name %} {{ name }} {% endblocktrans %}

{% if store.image or store.description %}
{% thumbnail store.image "400x400" as im %} {{ store.name }} {% endthumbnail %} {% include "stores/partials/store_address.html" %} {% include "stores/partials/store_contact.html" %}
{% endif %} {% with periods=store.opening_periods.all %} {% if periods|length %}

{% trans "Opening Hours" %}

{% for period in periods %} {% endfor %}
{{ period.printable_weekday }} {{ period.printable_period }}
{% endif %} {% endwith %}
{{ store.description|safe }}
{% endblock %} {% block extrascripts %} {{ block.super }} {% include "stores/partials/extrascripts.html" %} {% endblock %} {% block onbodyload %} stores.maps.initStore(); {% endblock %}