{# pe_result.html #} {% extends "base.html" %} {% block extrahead %} {% endblock %} {% block content %} {% include "query_nav.html" %}

Patient Explorer results (up to {{ patients_per_page }} patient{{ patients_per_page|pluralize }} per page)

{% if results %} {% include "page_nav_results.html" with page=page %} {% include "expand_collapse_buttons.html" %} {% for resultset in results %}

{{ resultset.tablename }}

{{ resultset.table_html|safe }} {{ resultset.query_html|safe }} {% endfor %} {% else %}
No patients found.
{% endif %}

Common patient ID query

{{ patient_id_query_html|safe }} {% if results %} {% include "page_nav_results.html" with page=page %} {% endif %} {% endblock %}