{% extends 'core/base.html' %} {% load static %} {% block title %}Credit Customers - SwiftPOS{% endblock %} {% block topbar_title %}Credit Customers{% endblock %} {% block content %}
Customers With Outstanding Balance
View customers owing and clear credit payments.
{% for order in credit_orders %} {% empty %} {% endfor %}
# Customer Phone Total Paid Balance Date Actions
{{ order.order_number }} {{ order.customer_name|default:"-" }} {{ order.customer_phone|default:"-" }} {{ currency_symbol }}{{ order.final_amount|floatformat:2 }} {{ currency_symbol }}{{ order.amount_paid|floatformat:2 }} {{ currency_symbol }}{{ order.balance_amount|floatformat:2 }} {{ order.created_at|date:"Y-m-d H:i" }} Clear Credit
No customers with outstanding balance.
{% endblock %}