{% extends 'generic/base_supervisor.html' %} {% block content %}

Collection: {{ collection.name }}

Trainee: {{ trainee.first_name }} {{ trainee.last_name }} ({{ trainee.email }})
Feedback Summary
{{ total_outstanding_feedback }} outstanding feedback item{{ total_outstanding_feedback|pluralize }}
Across {{ outstanding_case_count }} case{{ outstanding_case_count|pluralize }}
{% if outstanding_rows %}

Outstanding Feedback

{% 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:80 }} {% endif %}
{{ row.stats.outstanding_feedback_count }} awaiting acknowledgement
Loading conversation...
{% endfor %}
{% else %} {% endif %} {% if history_rows %}

Previous Conversations

{% for row in history_rows %}

Open to load conversation history...
{% endfor %}
{% elif not outstanding_rows %}
No case conversations have been started yet.
{% endif %}
{% endblock %}