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

 Manage Missing CRFs and Requisitions

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

Select the options you need and click `Apply filters` to filter the table of missing forms below. The default shows all for the site.

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

{# ---- saved filters (above Apply) ---- #}
{% csrf_token %} {% if can_share %}{% endif %}
{% csrf_token %}
{# ---- lens toggle ---- #}
{% if lens == 'overview' %} Export {% endif %} {% if unavailable_count %} Review flagged: {{ unavailable_count }} {% endif %}

{% if lens == 'grid' %} {% if crf_only %} Cells show # missing CRF counts for the selected CRFs only {% else %} Cells show the counts of "# CRFs / # Requisitions" missing. {% endif %} Click a cell to review and/or update the status of a CRF or Requisition. {% else %} Cells show the number of missing documents per visit. Click a cell to expand the number of missing documents by subject. {% 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 missing 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 overview %} {% for cell in row.cells %} {% endfor %} {% empty %} {% endfor %}
Missing CRFs{{ code }}Total
{{ row.verbose_name }} {% if cell.count == 0 %}·{% else %}{{ cell.count }}{% endif %} {{ row.total }}
No missing CRFs for this selection.

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

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