{% extends "layout.html" %} {% block title %}

List of Doctors

{% endblock %} {% block body %}
{% for item in data %} {% endfor %}
Name Grade Specialization Count of patients
{{ item["first_name"] }} {{ item["last_name"] }} {{ item["grade"] }} {{ item["specialization"] }} {{ item["patient_count"] }}
{% endblock %}