{% extends 'hospital/admin_base.html' %} {% load static %} {% block content %} {%include 'hospital/admin_dashboard_cards.html'%}



Recent Doctors
{% for d in doctors %} {%if d.status%} {% else %} {% endif %} {% endfor %}
Name Department Mobile Status
{{d.get_name}} {{d.department}} {{d.mobile}} Permanent On Hold
Recent Patient
{% for p in patients %} {%if p.status%} {% else %} {% endif %} {% endfor %}
Name Symptoms Mobile Address Status
{{p.get_name}} {{p.symptoms}} {{p.mobile}} {{p.address}} Admitted On Hold
{% endblock content %}