{% extends "oscar/layout.html" %} {% load i18n %} {% load staticfiles %} {% load thumbnail %} {% load currency_filters %} {% block extrahead %} {% endblock %} {% block content %}

{% trans "View our stores" %}

{% for store in store_list %}
{% thumbnail store.image "400x400" as im %}
{% endthumbnail %}
{% include "stores/partials/store_address.html" %} {% include "stores/partials/store_contact.html" %}
{% include "stores/partials/store_opening_periods.html" %}
{% endfor %}
{% endblock %} {% block extrascripts %} {{ block.super }} {% include "stores/partials/extrascripts.html" %} {% endblock %} {% block onbodyload %} stores.maps.createOverviewMap(); {% endblock %}