{% extends edc_listboard_template %} {% load edc_base_extras %} {% load edc_dashboard_extras %} {% load edc_subject_dashboard_extras %} {% load tz %} {% load static %} {% block main %}
{% include 'edc_dashboard/bootstrap3/search_form.html' %}
{% if search_term %}
  • Reported Visits for {{ search_term }} {% copy_string_to_clipboard_button search_term %}
  • {% else%}
  • Subjects
  • {% endif %} {% for result in results %} {% if search_term %} {% appointment_status_icon appt_status=result.object.appointment.appt_status %} {{ forloop.counter|add:page_obj.start_index|add:-1 }}. {{ result.object.visit_code }}.{{ result.object.visit_code_sequence }} on {{ result.object.report_datetime|date:"SHORT_DATE_FORMAT" }} {{ result.metadata_summary }} {% for crf in result.crf_metadata %} {% if crf.entry_status == KEYED %}{% else %}{% endif %} {{ crf.verbose_name }} {% if result.object.appointment %}APPT{%endif %} {% endfor %} {% for requisition in result.requisition_metadata %}
  • {% if requisition.entry_status == KEYED %}{% else %}{% endif %} {{ requisition.verbose_name }}
  • {% endfor %} {% else %} {{ forloop.counter|add:page_obj.start_index|add:-1 }}. {{ result.subject_identifier }} {{ result.visit_count }} visits {% endif %} {% endfor %}
    {% paginator_row %}
    {% endblock main %}