{% extends "base.html" %} {% block content %}
| # | Patient Name | Doctor Name | Doctor Fee (₹) | Room Charge (₹) | Medicine Charge (₹) | Total Bill (₹) | Date |
|---|---|---|---|---|---|---|---|
| {{ loop.index }} | {{ b.patient_name }} | {{ b.doctor_name }} | {{ b.doctor_fee or '-' }} | {{ b.room_charge or '-' }} | {{ b.medicine_charge or '-' }} | ₹{{ b.total_bill }} | {{ b.billing_date.strftime('%d-%m-%Y') if b.billing_date else '-' }} |
| No billing records available. | |||||||