{% extends 'common/base.html' %} {% load static %} {% block title %} Customer List {% endblock %} {% block content %}

Customer List

Reset
{% for customer in customers %} {% empty %} {% endfor %}
# Customer Info Address Status Registered Action
{{ forloop.counter }} Name: {{ customer.customer_name }}
Mobile: {{ customer.mobile }}
Email: {{ customer.email|default:"-" }}
{{ customer.address|truncatewords:8 }} {% if customer.status %} Active {% else %} Inactive {% endif %} {{ customer.created|date:"Y-m-d" }} View
No customers found.
{% endblock %}