{% extends 'admin_base_layout.html' %} {% load static %} {% block content %} Manimaran | Customer Listing

Customer Management

{% csrf_token %}

Customers

{% if cust_obj%} {% for cust in cust_obj %} {% endfor %}

Id

First Name

Last Name

Email

Phone Number

Created Date

Action

{{ cust.id }} {{ cust.first_name }} {{ cust.last_name }} {{ cust.email }} {{ cust.phone_number }} {{ cust.start_date|date:"d M Y" }}
{% else %}

No data found

{% endif %}
{% if cust_obj %}
{% endif %}
{% endblock %}