{% 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 %}

{% trans "Search Stores" %}

{% include "dashboard/partials/form_fields_inline.html" with form=filterform %} {% if not filterform.is_empty %} {% trans "Reset" %} {% endif %}

{{ 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" %} {% trans "Is pick up store?" %} {% trans "Status" %}
{{ store.name }} {{ store.address.street|linebreaks }} {{ store.address.line4 }} {{ store.address.postcode }} {{ store.address.state|default:"-" }} {{ store.address.country }} {% if store.is_pickup_store %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %} {% if store.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}
{% include "dashboard/partials/pagination.html" %}
{% else %}

{% trans "No stores found." %}

{% endif %} {% endblock dashboard_content %}