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

๐Ÿ‘จโ€โš•๏ธ Doctor Management

Add/Edit Doctor

Leave empty to auto-generate

Doctors List

{% if doctors %}
{% for doctor in doctors %} {% endfor %}
Doctor ID Name Specialization Mobile Email Fee
{{ doctor[0] }} {{ doctor[1] }} {{ doctor[2] }} {{ doctor[3] }} {{ doctor[4] }} ${{ "%.2f"|format(doctor[5]|float) }}
{% else %}

No doctors found. Add your first doctor!

{% endif %}
{% endblock %}