{% extends "base.html" %} {% block content %}

Patient Discharge

Clear active patients, free up rooms, and process final billing.

Active Admissions
{% for a in active_admissions %} {% else %} {% endfor %}
Patient Room Action
{{ a.patient_name }} {{ a.room_number }} ({{ a.room_type }})
No active admissions pending discharge.
Discharge History
{% for d in discharges %} {% else %} {% endfor %}
Patient Date Total Bill Status
{{ d.patient_name }} {{ d.discharge_date }} ₹{{ d.total_bill }} {{ d.payment_status }}
No historical discharge records found.
{% endblock %}