{% extends 'layout/app.html' %} {% block title %} Customer List {% endblock %} {% load i18n %} {% load static %} {% block content %}
User List
{% if count_customers == 0 %} {% else %} {% for customer in customers %} {% endfor %} {% endif %}
Email phone company position join date status action

No Customer Found !

{{ customer.name }}

{{ customer.countryOption }}

{{ customer.email }}
{{ customer.phone }}
{{ customer.company }}
{{ customer.position }}
{{ customer.join }}
{{ customer.status }}
{% endblock %}