{% extends "base.html" %} {% block content %}
| Room No. | Room Type | Charges/Day | Bed Count | Patient | Doctor | Status |
|---|---|---|---|---|---|---|
| {{ row.room_number }} | {{ row.room_type }} | ₹{{ row.charges_per_day or '—' }} | {{ row.bed_count or '—' }} | {{ row.patient_name or '—' }} | {{ row.doctor_name or '—' }} | {% if row.patient_name %} Occupied {% else %} Vacant {% endif %} |
| No patient-room mapping found. | ||||||