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

{{ _("Leads")|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") }}
{{ _("Lead") }} {{ customer.phone_number }} {{ customer.national_id }} {{ customer.address }} {{ customer.created|date }}
{% if is_paginated %} {% endif %}
{% endblock %}