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

  Manage Missing CRFs and Requisitions: Flag or unflag

{{ subject_identifier }} {% if visit_code %}@ {{ visit_code }}{% endif %}

To flag a form that will always be missing

Give the reason one or more forms cannot be submitted and click UPDATE. This will remove the document from the "Missing CRFs / Requisitions" reports.

To unflag a form that is now available

If you change your mind just select "-- available --" as the reason and click UPDATE.



Click UPDATE to save your decision(s).

{% if not reason_choices %}
No "missing" reasons are configured yet.
{% endif %} {# ---------- CRFs ---------- #}
CRFs Review flagged {% if can_flag_crf %}{% endif %}
{% csrf_token %} {% include "edc_metadata/missing_rows.html" with rows=crf_rows can_flag=can_flag_crf is_req=False %}

Clinical comment: {% if clinical_comment %}{{ clinical_comment }}{% else %}---{% endif %}

{# ---------- Requisitions ---------- #}
Requisitions Review flagged {% if can_flag_requisition %}{% endif %}
{% csrf_token %} {% include "edc_metadata/missing_rows.html" with rows=requisition_rows can_flag=can_flag_requisition is_requisition=True %}
{% endblock main %}