{% extends "base.html" %} {% block title %}Customer Wise Report{% endblock %} {% block page_title %}Customer Wise Report{% endblock %} {% block page_subtitle %}Search customers and view order totals{% endblock %} {% block content %} {% include "partials/breadcrumb.html" %}
| Customer | Mobile | Orders | Total Amount | Paid | Balance | Last Order |
|---|---|---|---|---|---|---|
| {{ row.customer.name }} | {{ row.customer.mobile_number }} | {{ row.total_orders }} | ₹{{ row.total_amount }} | ₹{{ row.total_paid }} | ₹{{ row.total_balance }} | {% if row.last_order_date %}{{ row.last_order_date|date:"d M Y" }}{% else %}—{% endif %} |