{% extends 'admin_navbar.html' %} {% block title %} Customers List {% endblock %} {% block profileactive %} active {% endblock profileactive %} {% block css %} {% endblock %} {% block body %}
All Customers ({{customer_count}})
{% for customer in customers %} {% endfor %}
Customer Name Email Id Phone No Address Update
{{customer.name}} {{customer.email}} {{customer.phone}} {{customer.address}} View Orders
{% endblock %}