{% extends 'hospital/doctor_base.html' %} {% block content %} {%load static%}
{% if patients %}
Your Total Patient List
{% for p in patients %} {% endfor %}
Name Profile Picture Symptoms Mobile Address
{{p.get_name}} Profile Pic {{p.symptoms}} {{p.mobile}} {{p.address}}
{%else%}


No Patient Found !!!

{% endif %}
{% endblock content %}