{% extends "admin_panel/base_page.html" %} {% load static %} {% block title %} Doctors {% endblock %} {% block head %} {% endblock %} {% block content %}
{% if doctors %} {% for doctor in doctors %} {% endfor %} {% endif %}
Photo Name Department Title Status Action
depimg {{ doctor.full_name }} {{ doctor.department.title }} {{ doctor.specialisation }} {% if doctor.status %} Active {% else %} In-Active {% endif %} Edit Delete
{% endblock %} {% block script %} {% endblock %}