{% extends "base.html" %} {% block content %}
Here’s your medical summary and upcoming appointments.
| Date | Time | Doctor | Status |
|---|---|---|---|
| {{ a.appointment_date }} | {{ a.time_slot }} | {{ a.doctor_name }} | {% if a.appointment_date >= current_date %} Upcoming {% else %} Completed {% endif %} |
| No appointments found. | |||
| Doctor Fee (₹) | Room Charge (₹) | Medicine (₹) | Total (₹) | Status |
|---|---|---|---|---|
| {{ b.doctor_fee }} | {{ b.room_charge }} | {{ b.medicine_charge }} | {{ b.total_bill }} | {% if b.payment_status == 'Paid' %} Paid {% else %} Unpaid {% endif %} |
| No billing information available. | ||||