{% extends 'atlas/exams.html' %} {% block content %}

{{ collection.name }}

Collection attempt history and message activity
Collection Detail {% if collection.case_query_messaging_enabled %} Global Messages Inbox {% endif %}
Cases
{{ total_cases }}
Attempts
{{ total_attempt_count }}
Completed Attempts
{{ completed_attempt_count }}
{% if collection.case_query_messaging_enabled %}
Outstanding Messages
{{ total_outstanding_messages }}
{% else %}
Case Messaging
Disabled
{% endif %}
{% if userexams %}

Users

{{ userexams|length }} user attempt{{ userexams|length|pluralize }}
{% for userexam in userexams %}
{{ userexam.get_user_name }} {% if userexam.completed %} Completed {% else %} In progress {% endif %}
Started: {{ userexam.start_time|default:"-" }}
Ended: {{ userexam.end_time|default:"-" }}
{% if collection.case_query_messaging_enabled %} {% if userexam.outstanding_feedback_count %} {{ userexam.outstanding_feedback_count }} outstanding message{{ userexam.outstanding_feedback_count|pluralize }} {% endif %} {% if userexam.total_review_message_count %} {{ userexam.total_review_message_count }} conversation message{{ userexam.total_review_message_count|pluralize }} {% else %} No conversation yet {% endif %} {% endif %}
Open Attempt {% if collection.case_query_messaging_enabled %} Messages {% endif %}
{% endfor %}
{% endif %} {% if cidexams %}

CID Users

{{ cidexams|length }} CID attempt{{ cidexams|length|pluralize }}
{% for cidexam in cidexams %}
{{ cidexam.cid_user }} {% if cidexam.completed %} Completed {% else %} In progress {% endif %}
Started: {{ cidexam.start_time|default:"-" }}
Ended: {{ cidexam.end_time|default:"-" }}
{% if collection.case_query_messaging_enabled %} {% if cidexam.outstanding_feedback_count %} {{ cidexam.outstanding_feedback_count }} outstanding message{{ cidexam.outstanding_feedback_count|pluralize }} {% endif %} {% if cidexam.total_review_message_count %} {{ cidexam.total_review_message_count }} conversation message{{ cidexam.total_review_message_count|pluralize }} {% else %} No conversation yet {% endif %} {% endif %}
Open Attempt {% if collection.case_query_messaging_enabled %} Messages {% endif %}
{% endfor %}
{% endif %} {% if not userexams and not cidexams %}
No attempts have been recorded for this collection yet.
{% endif %} {% endblock %}