{% extends "base.html" %} {% block content %}

Doctor Directory

Add Doctor
{% for doc in doctors %} {% else %} {% endfor %}
# ID Name Department Specialization Contact Consultation Fee Actions
DOC-{{ "%03d" | format(doc.doctor_id) }}
Dr. {{ doc.name }}
{{ doc.dept_name }} {{ doc.specialization[:30] + '...' if doc.specialization|length > 30 else doc.specialization }} {{ doc.contact_no }} ₹{{ doc.fees }} Schedule
No Doctors Found

Please add doctors to populate the directory.

{% endblock %}