{% extends 'hospital/patient_base.html' %} {% block content %} {%load static%}
{% if doctors %}
Total Doctor List
{% for d in doctors %} {% endfor %}
Name Profile Picture Mobile Address Department
{{d.get_name}} Profile Pic {{d.mobile}} {{d.address}} {{d.department}}
{%else%}


No Doctor Found !!!

{% endif %}
{% endblock content %}