{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Request Explanation" %} - {{ complaint.reference_number }} - PX360{% endblock %} {% block content %}
{% trans "Back to Complaint" %}
{% trans "Complaints" %} {{ complaint.reference_number }} {% trans "Request Explanation" %}

{% trans "Request Explanation" %}

{{ complaint.title }}

{% csrf_token %}

{% trans "Select Recipients" %}

{% if recipients %}
{% for recipient in recipients %}
{{ recipient.staff_name|first }}

{{ recipient.staff_name }}

{{ recipient.role }}
{{ recipient.department }}
{% if recipient.manager %}
{% trans "Manager:" %} {{ recipient.manager_name }}

{% trans "Will receive notification only (no explanation link)" %}

{% else %}

{% trans "No manager assigned to this staff member" %}

{% endif %} {% if not recipient.staff_email %}

{% trans "This staff member has no email address. Request cannot be sent." %}

{% endif %}
{% endfor %}
{% else %}

{% trans "No staff members are involved in this complaint." %}

{% endif %}

{% trans "Additional Message" %}

{% trans "Summary" %}

0 {% trans "staff will receive explanation links" %} 0 {% trans "managers will be notified" %}

{% trans "Cancel" %}
{% endblock %}