{% extends 'base.html' %} {% block content %}
| Customer | Phone | Balance | Status | Actions |
|---|---|---|---|---|
| {{ c.name }} | {{ c.phone or '-' }} | {{ customer_balance|currency }} | {% if customer_balance > 0 %} Owes {{ customer_balance|currency }} {% elif customer_balance < 0 %} Credit {{ (customer_balance * -1)|currency }} {% else %} Paid Up {% endif %} | Ledger Record Payment |
| No customers. | ||||