{% extends 'doctor/doctor_deshboard.html' %} {% load static %} {% block content %}

Hi, welcome back!

Doctor Booking List

Doctor Booking Details

{% for booking in doctor_booking_list %} {% endfor %}
ID Doctor Patient Name Email Contact No Booking Date Time Slot Status Action
{{ booking.id }} {{ booking.doctor }} {{ booking.patient_name }} {{ booking.email }} {{ booking.contact_number }} {{ booking.booking_date }} {{ booking.time_slot }} {{ booking.get_status_display|capfirst }}
{% endblock content %}