{% 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 store_list.count %}
{% csrf_token %} {# #} {% for store in store_list %} {# {% endfor %}
{% trans "Name" %} {% trans "Street" %} {% trans "City" %} {% trans "Post Code" %} {% trans "State" %} {% trans "Country" %}
#} {{ store.name }} {{ store.address.line1 }}
{% if store.address.line2 %}{{ store.address.line2 }}
{% endif %} {% if store.address.line3 %}{{ store.address.line3 }}
{% endif %}
{{ store.address.line4 }} {{ store.address.postcode }} {{ store.address.state }} {{ store.address.country }} {% if store.is_pickup_store %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %} {% if store.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} {% trans "Edit" %} {% trans "Delete" %}
{% if page_obj %} {% include "catalogue/partials/pagination.html" %} {% endif %}
{% else %}

{% trans "No stores found." %}

{% endif %} {% endblock dashboard_content %}