{% extends "customers/index.html" %} {% load i18n %} {% block toolbar %}
{% if request.session.customer_query %} {% trans "Download" %} {% else %} {% trans "Download" %} {% endif %}
{% endblock toolbar %} {% block tabs %}
  • {% trans "Browse" %}
  • {% trans "Search" %}
  • {% endblock tabs %} {% block customers %}
    {% csrf_token %} {% for field in form %}
    {{ field }}
    {% endfor %}
    {% if form.errors %}
    {% for k, v in form.errors.items %} {{ v }} {% endfor %}
    {% endif %} {% for i in customers %} {% empty %} {% endfor %}
    {% trans "Name" %} {% trans "Email" %} {% trans "Phone" %} {% trans "Address" %} {% trans "Postal Code" %} {% trans "City" %}
    {{ i.fullname }} {{ i.email }} {{ i.phone }} {{ i.street_address }} {{ i.zip_code }} {{ i.city }}
    {% trans "No customers found" %}
    {% include "pagination.html" with items=customers %} {% endblock customers %}