{% extends 'base.html' %} {% block content %}
| Appointment Number | Doctor Name | Consultancy fee | Date of Appointment | Time of Appointment | Creation Date | Status | Action | ||
|---|---|---|---|---|---|---|---|---|---|
| {{appointment.appointmentnumber}} | {{appointment.doctor_id.admin.first_name}} {{i.doctor_id.admin.last_name}} | {{appointment.doctor_id.fee}} | {{appointment.date_of_appointment}} | {{appointment.time_of_appointment}} | {{appointment.created_at}} | {% if appointment.status == '0' %}Not Updated Yet | {% else %}{{ appointment.status}} | {% endif %}
|
{% if appointment.status != 'Approved' and appointment.status != 'Canceled' %}
{% else %}
Cannot cancel
{% endif %}
|
|
No appointment history available.
{% endif %}