{% extends 'main/base.html' %} {% load static %} {% block contentTitle %} Patient List {% endblock contentTitle %} {% block content %} {% comment %} 1)name, 2)bed number, 3)status: critical, less crtical, recovering, recovered 4)edit option, will display modal that will contain, bed number will change to NA once recovered {% endcomment %}
Name |
Bed no |
Status |
Edit |
{% for patient in patients %}
---|---|---|---|
{{ patient.name }} |
{{ patient.bed_num }} |
{{ patient.status }} |
Update |