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

{{ queryset_description }}

All stores

   
{% for store in store_list %}

{{ store.name }} {% if store.distance %} {{ store.distance.km|floatformat:2 }} km {% endif %} {% trans "View store details" %}

{% thumbnail store.image "400x400" as im %} {{ store.name }} {% 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 %} {% if longitude and latitude %} var pnt = new google.maps.LatLng({{ latitude}}, {{ longitude }}); {% else %} var pnt = null; {% endif %} stores.maps.overview.init(pnt); {% endblock %}