{% extends 'hospital/admin_base.html' %}
{% load static %}
{% block content %}
{%include 'hospital/admin_dashboard_cards.html'%}
Recent Doctors
Name |
Department |
Mobile |
Status |
{% for d in doctors %}
{{d.get_name}} |
{{d.department}} |
{{d.mobile}} |
{%if d.status%}
Permanent |
{% else %}
On Hold |
{% endif %}
{% endfor %}
Recent Patient
Name |
Symptoms |
Mobile |
Address |
Status |
{% for p in patients %}
{{p.get_name}} |
{{p.symptoms}} |
{{p.mobile}} |
{{p.address}} |
{%if p.status%}
Admitted |
{% else %}
On Hold |
{% endif %}
{% endfor %}
{% endblock content %}