{% extends "base.html" %} {% block title %}Customer Details{% endblock %} {% block page_heading %}Customer Profile{% endblock %} {% block content %}
| ID | Date | Invoice | Item | Total | Received |
|---|---|---|---|---|---|
| {{ o.id }} | {{ o.order_date }} | {{ o.invoice_no }} | {{ o.item_name }} | {{ '%.2f'|format(o.total_price or 0) }} | {{ '%.2f'|format(o.cash_received or 0) }} |
| No orders. | |||||
| IMEI | Serial | Status | Product Warranty | Battery Warranty |
|---|---|---|---|---|
| {{ d.imei }} | {{ d.serial }} | {{ d.status }} | {{ d.product_warranty_expiry }} | {{ d.battery_warranty_expiry }} |
| No devices. | ||||
| Date | Type | Amount | Reason | User |
|---|---|---|---|---|
| {{ t.trans_date }} | {{ t.trans_type }} | {{ '%.2f'|format(t.amount or 0) }} | {{ t.reason }} | {{ t.created_by }} |
| No transactions. | ||||