{% include 'admin_sidebar.html' %}
{% csrf_token %}
| Serial No. |
Name |
Email Address |
Phone Number |
Email Verified |
Disabled |
Created At |
Action |
{% if all_customers %}
{% for customer in all_customers %}
| {{customer.serialno}} |
{{customer.name}} |
{{customer.email}} |
{{customer.countrycode}} {{customer.phone}} |
{{customer.emailverified}} |
{{customer.isdisabled}} |
{{customer.created_at}} |
{% ifequal customer.isdisabled 'Yes' %}
{% else %}
{% endifequal %}
{{customer.id}}
|
{% endfor %}
{% endif %}
{% if all_customers.has_other_pages %}
{% endif %}
{% include 'admin_footer.html' %}