{% extends "base.html" %} {% block title %}Customer List{% endblock %} {% block content %}

Customer List

Add New Customer {% for customer in page_obj %} {% empty %} {% endfor %}
Name Company Contact Email Actions
{{ customer.name }} {{ customer.company_name }} {{ customer.phone }} {{ customer.email }} View / Edit Delete Ledger
No customers found.
{% endblock %}