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

Choose Patient Explorer

Saved Patient Explorers

{% include "expand_collapse_buttons.html" %} {% if patient_explorers %} {% for pe in patient_explorers %} {% comment %}Widest, so last:{% endcomment %} {% endfor %}
Created at Delete PE OK? Active? Choose/activate Edit Details
{{ pe.created }}
{% csrf_token %}
{% if pe.has_patient_id_query %} {% if pe.has_output_columns %}
OK
{% else %}
No output columns!
{% endif %} {% else %}
Missing patient criteria!
{% endif %}
{% if pe.active %}{% endif %} {{ pe.active|yesno }} {% if pe.active %}{% endif %} {% if pe.active %} (activated) {% else %}
{% csrf_token %}
{% endif %}
{% csrf_token %}
{{ pe.summary_html|safe }}
{% include "page_nav.html" with page=patient_explorers %} {% else %}
None.
{% endif %} {% endblock %}