{% extends "admin/dashboard.html" %} {% load static %} {% block title %} Admin | Customer List {% endblock title %} {% block content %}

All Customers

Add Customer
{% for customer in customers %} {% empty %} {% endfor %}
ID Name Phone Number Gender Status Created At Action
{{ customer.id }} {{ customer.user.first_name }} {{ customer.user.last_name }} {{ customer.phone_number }} {{ customer.gender|capfirst }} {% if customer.status == 1 %} Active {% else %} Inactive {% endif %} {{ customer.create_at|date:"d M Y H:i" }}
No customers available
{% endblock content %}