{% extends 'base.html' %} {% block content %}

{{ collection.name }}

{% if cid is not None %} CID: {{ cid }} {% else %} Feedback hub {% endif %}
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 %}
No outstanding feedback needs acknowledgement.
{% 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 %}