{% extends 'admin/master.html' %} {% load static %} {% block content %}

Doctors List

Doctors List

{% for doctor in doctors %} {% empty %} {% endfor %}
ID Profile Doctor_Name Username Experience Specialist Phone Email Status Action
{{ doctor.id }} dr {{ doctor.dr_name }} {{ doctor.user.username }} {{ doctor.experience }}  Years {{ doctor.specialist.category_name }} {{ doctor.phone }} {{ doctor.user.email }} {% if doctor.status == "1" %}Active{% else %}Inactive{% endif %}
No doctors found.
{% endblock content %}