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

Messages Inbox

All accessible conversation threads across collections.
Pending acknowledgements
{{ total_needs_your_ack }} need your acknowledgement
{{ total_waiting_on_other }} waiting on another user
{{ total_outstanding }} unacknowledged message{{ total_outstanding|pluralize }}
{% if show_all %} Show outstanding first {% else %} Load full history {% endif %}
{% if inbox_rows %}
{% for row in inbox_rows %}
{{ row.collection.name }} {{ row.target_label }} {% if row.viewer_role == 'moderator' %} Supervisor {% else %} Learner {% endif %}
{{ row.needs_your_ack_count }} need your ack {% if row.waiting_on_other_count %} {{ row.waiting_on_other_count }} waiting on other {% endif %} {{ row.outstanding_count }} total unacknowledged Open user message page
{% if row.outstanding_rows %}
Outstanding
{% for case_row in row.outstanding_rows %}
Case {{ case_row.casedetail.sort_order|add:1 }} {% if row.collection.show_title_post %} {{ case_row.casedetail.case.title|default:case_row.casedetail.case.pk|truncatechars:90 }} {% endif %} {{ case_row.stats.needs_your_ack_count }} need your ack {% if case_row.stats.waiting_on_other_count %} {{ case_row.stats.waiting_on_other_count }} waiting on other {% endif %} {{ case_row.stats.outstanding_total_count }} total {% if row.viewer_role == 'moderator' %} {% elif row.attempt.user_user_id %} {% endif %}
Loading conversation...
{% endfor %}
{% endif %} {% if show_all and row.history_rows %}
History
{% for case_row in row.history_rows %}

{% if row.viewer_role == 'moderator' %} {% elif row.attempt.user_user_id %} {% endif %}
Open section to load conversation history...
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
No message threads available for your account.
{% endif %} {% endblock %}