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

Customers

New Customer
{% for customer in customers %} {% empty %} {% endfor %}
NamePhoneEmailBalance Due
{{ customer.name }} {{ customer.phone|default:"-" }} {{ customer.email|default:"-" }} {{ customer.balance_due }} View
No customers.
{% include "partials/pagination.html" with page_obj=customers %}
{% endblock %}