{% extends "base.html" %} {% block title %}Payments{% endblock %} {% block page_title %}Payments{% endblock %} {% block page_subtitle %}Record and track order payments{% endblock %} {% block content %} {% include "partials/breadcrumb.html" %}
| Payment # | Order # | Customer | Mobile | Amount | Mode | Status | Date | Received By | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ payment.payment_number }} | {{ payment.order.order_number }} | {{ payment.order.customer.name }} | {{ payment.order.customer.mobile_number }} | ₹{{ payment.amount_paid }} | {{ payment.get_payment_mode_display }} | {{ payment.get_payment_status_display }} | {{ payment.payment_date|date:"d M Y" }} | {{ payment.received_by.get_full_name|default:payment.received_by.username|default:"—" }} | View {% if can_manage %} Edit {% endif %} |