{% extends edc_base_template %} {% load static %} {% block extrastyle %}{{ block.super }} {% endblock extrastyle %} {% block main %} {{ block.super }}

 Outstanding CRFs and Requisitions

{% if no_schedule %}
No visit schedules are loaded.
{% else %} {# ---- filter bar ---- #}
Filters

Hold down "Control", or "Command" on a Mac, to select more than one or deselect.

{% if no_priority_configured %}
No priority CRFs configured for this schedule — showing all forms.
{% endif %} {# ---- lens toggle ---- #}
{% if unavailable_count %} Review flagged: {{ unavailable_count }} {% endif %}
{% if lens == 'grid' %}

Outstanding = entry status New (REQUIRED) only. {% if crf_only %} Cells show CRF counts for the selected CRFs only (requisitions hidden while a CRF filter is active). {% else %} Cells show CRF / requisition counts. {% endif %} Click a cell to review / flag outstanding forms.

{% endif %} {# ================= GRID ================= #} {% if lens == 'grid' %}
{% for code, title in columns %}{% endfor %} {% for row in grid %} {% for cell in row.cells %} {% endfor %} {% empty %} {% endfor %} {% for total in column_totals %}{% endfor %}
Subject ({{ subject_count }}){{ code }}Total
{{ row.subject_identifier }} {% if cell.total == 0 %}·{% else %} {% if crf_only %} {% if cell.url %}{{ cell.crf }}{% else %}{{ cell.crf }}{% endif %} {% else %} {% if cell.url %}{{ cell.crf }} / {{ cell.req }}{% else %}{{ cell.crf }} / {{ cell.req }}{% endif %} {% endif %} {% endif %} {{ row.total }}
No outstanding forms for this selection.
Total{{ total }}{{ grand_total }}

{% if page_obj.has_previous %} ‹ Prev {% endif %} {% for num in page_range %} {% if num == page_obj.paginator.ELLIPSIS %} {{ num }} {% elif num == page_obj.number %} {{ num }} {% else %} {{ num }} {% endif %} {% endfor %} {% if page_obj.has_next %} Next › {% endif %} {{ subject_count }} subject{{ subject_count|pluralize }}

{# ================= LEADERBOARD ================= #} {% else %}
{% for code, title in columns %}{% endfor %} {% for row in leaderboard %} {% for cell in row.cells %} {% endfor %} {% empty %} {% endfor %}
CRF{{ code }}Total subjects
{{ row.verbose_name }} {% if row.tier %}Tier {{ row.tier }}{% endif %} {% if cell.count == 0 %}·{% else %}{{ cell.count }}{% endif %} {{ row.total }}
No outstanding CRFs for this selection.

Each cell is the number of distinct subjects with that CRF outstanding at the visit. Click a cell to open the matching subjects in the grid.

{% endif %} {% endif %}{# no_schedule #}
{% endblock main %}