{% extends 'admin_pages/base_admin.html' %} {% block title %}Doctors | Admin Panel{% endblock %} {% block content %}

Doctor List

{% csrf_token %}
{% if perms.inventory.add_doctor %} Add Doctor {% endif %}
{% for doctor in doctors %} {% empty %} {% endfor %}
ID Name Contact Actions
{{ doctor.id }} {{ doctor.name }} {{ doctor.contact }}
No doctors found.
{% if doctors.has_other_pages %} {% endif %} {% endblock %}