{% load i18n %} {% load static %} {% trans "Review Investigation" %} - PX360

{% trans "Review Investigation Answers" %}

{% trans "Review staff responses and write your final reply" %}

{% if error %}

{{ error }}

{% endif %}

{% trans "Complaint" %} #{{ complaint.reference_number }}

{{ complaint.title }}

{% trans "Staff Responses" %}

{% for sd in staff_data %}
{{ sd.staff.first_name|first }}{{ sd.staff.last_name|first }}

{{ sd.staff.get_full_name }}

{% if sd.staff.job_title %}

{{ sd.staff.job_title }}

{% endif %} {% if sd.is_completed %}{% trans "Responded" %}{% else %}{% trans "Pending" %}{% endif %}
{% if sd.is_completed %} {% for pair in sd.qa_pairs %}
{{ forloop.counter }}

{{ pair.question.question_text }}

{{ pair.answer|default:"—" }}

{% endfor %} {% else %}

{% trans "This staff member has not responded yet." %}

{% endif %}
{% endfor %} {% if staff_data %}

{% trans "Your Final Reply" %}

{% trans "Based on the investigation responses above, write your final reply. This will be sent to the department manager for review." %}

{% csrf_token %}
{% endif %}

{% trans "PX360 Complaint Management System" %}