{% extends 'base.html' %} {% load i18n %} {% load static %} {% block title %}{{ _('Customers')|capfirst }}{% endblock title %} {% block vendors %}{{ _("Customers")|capfirst }}{% endblock %} {% block content %}

{{ _("Customers")|capfirst }}

{% if page_obj.object_list %}
{% for customer in customers %} {% endfor %} {% endif %}
{{ _("Name")|capfirst }}
{{ _("email")|capfirst }}
{{ _("Phone Number") }}
{{ _("National ID")|capfirst }}
{{ _("Address")|capfirst }}
{{ _("Create date") }}
{{ customer.phone }} {{ customer.additional_info.customer_info.national_id }} {{ customer.address_1 }} {{ customer.created|date }}
{% if is_paginated %} {% include 'partials/pagination.html' %} {% endif %}
{% include 'modal/delete_modal.html' %} {% endblock %}