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

{{ collection.name }}

Message hub for {{ target_label }}
Outstanding messages
{{ total_outstanding_messages }} awaiting acknowledgement
{% if show_all %} Show outstanding only {% else %} Load all conversation history {% endif %}
{% if outstanding_rows %}

Outstanding Messages

{% for row in outstanding_rows %}
Case {{ row.casedetail.sort_order|add:1 }} {% if collection.show_title_post %} {{ row.casedetail.case.title|default:row.casedetail.case.pk|truncatechars:90 }} {% endif %}
{{ row.stats.outstanding_total_count }} outstanding
{% endfor %}
{% else %}
No outstanding messages for this user.
{% endif %} {% if show_all %} {% if history_rows %}

Conversation History

{% for row in history_rows %}

{% endfor %}
{% elif not outstanding_rows %}
No conversation history for this user yet.
{% endif %} {% endif %} {% endblock %}