{% load i18n %} {% if workflow_log %}
{% trans "Investigation by" %} {{ event.investigator|default:"Department Champion" }} {% trans "for" %} {{ event.actor }}
{% trans "Questions & Answers" %}
{% elif event.type == 'reply_submitted' %}{% trans "Submitted by" %} {{ event.actor }}
{% elif event.type == 'direct_reply' %}{% trans "Submitted by" %} {{ event.actor }}
{% endif %} {% if event.type == 'staff_responded' and event.qa_pairs %}| {% trans "Question" %} | {% trans "Answer" %} |
|---|---|
| {{ forloop.counter }}. {{ qa.question }} | {% if qa.question_type == 'yes_no' %} {% if qa.answer == 'yes' %} {% trans "Yes" %} {% elif qa.answer == 'no' %} {% trans "No" %} {% else %} — {% endif %} {% else %} {{ qa.answer|truncatewords:25|default:"—" }} {% endif %} |
{% trans "Response" %}
{{ event.final_reply|truncatewords:50 }}
{% trans "Assessment" %}
| {% trans "Question" %} | {% trans "Answer" %} |
|---|---|
| {% trans "Is there any negligence resulting from carelessness?" %} | {% if event.negligence == 'yes' %} {% trans "Yes" %} {% elif event.negligence == 'no' %} {% trans "No" %} {% else %}—{% endif %} |
| {% trans "Is it resulting from policies or regulations?" %} | {% if event.policy_issue == 'yes' %} {% trans "Yes" %} {% elif event.policy_issue == 'no' %} {% trans "No" %} {% else %}—{% endif %} |
| {% trans "Does this complaint require an improvement project?" %} | {% if event.improvement_project == 'yes' %} {% trans "Yes" %} {% elif event.improvement_project == 'no' %} {% trans "No" %} {% else %}—{% endif %} |
{% trans "Response" %}
{{ event.reply|truncatewords:50 }}