{% if user.is_authenticated and user.is_patient %}
{% include 'patient-sidebar.html' %}
{% endif %}
{% if user.is_authenticated and user.is_doctor %}
{% include 'doctor-sidebar.html' %}
{% endif %}
{% for doctor in doctors %}
{% endfor %}
Dr. {{doctor.name}}
{{ doctor.department_name.hospital_department_name }}
{{ doctor.specialization.specialization_name }}
(17)
Dental Fillings
Whitneing
- 98%
- 17 Feedback
- Dhaka, Bangladesh
- {{doctor.consultation_fee}} BDT
View Profile
{% if user.is_authenticated and user.is_patient %}
Book Appointment
{% endif %}