{{ comment }} This page is a list of all patients who reside in the covered entity's residence. The search box allows searching throughout all viewable members of the directory, as well as people who you have searched for in this session. {{ endcomment }} {% extends "base.html" %} {% block title %} Hospital directory {% endblock %} {% block top %}

Directory of current patients.

{% endblock %} {% block content %}

{% for visit in concretize(visits) %} {% endfor %}
Name {% include "invisible.html" %} Date Admitted {% include "invisible.html" %} Location {% include "invisible.html" %} Condition {% include "invisible.html" %} Religious Affiliation {% include "invisible.html" %}
{{ visit.Patient.Name() }} {{ visit.DateAdmitted }} {{ visit.Location }} {{ visit.Condition }} {{ visit.Patient.ReligiousAffiliation }}
{% endblock %}