{% extends 'dashboard/layout.html' %} {% load i18n %} {% block body_class %}stores{% endblock %} {% block title %} {% trans "Store management" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %}

{{ queryset_description }}

{% if group_list.all|length %}
{% csrf_token %} {% for group in group_list %} {% for store in group.stores.all %} {% if forloop.first %} {% endif%} {% with address=store.address %} {% endwith %} {% if forloop.first %} {% endif%} {% empty %} {% endfor %} {% endfor %}
{% trans "Group Name" %} {% trans "Store" %} {% trans "Street" %} {% trans "City" %} {% trans "Post Code" %} {% trans "State" %} {% trans "Country" %}
{{ group.name }}{{ store.name }}{{ address.street|linebreaks }} {{ address.city }} {{ address.postcode }} {{ address.state }} {{ address.country }} {% trans "Edit" %} {% trans "Delete" %}
{{ group.name }} {% trans "No stores assigned to this group." %} {% trans "Edit" %} {% trans "Delete" %}
{% if page_obj %} {% include "partials/pagination.html" %} {% endif %}
{% else %}

{% trans "No store groups found." %}

{% endif %} {% endblock dashboard_content %}