{% load i18n %}

{% trans "Involved Staff" %}

{% if can_manage_actions and complaint.is_active_status %} {% endif %}
{% if complaint.involved_staff.exists %}
{% if can_manage_actions and complaint.is_active_status %} {% endif %} {% for staff_inv in complaint.involved_staff.all %} {% if can_manage_actions and complaint.is_active_status %} {% endif %} {% endfor %}
{% trans "Staff Member" %} {% trans "Role" %} {% trans "Status" %}

{{ staff_inv.staff.get_localized_name }}

{% if staff_inv.staff.department %}

{{ staff_inv.staff.department.name }}

{% endif %}
{% if staff_inv.notes %}

{{ staff_inv.notes|truncatechars:60 }}

{% endif %}
{{ staff_inv.get_role_display }} {% if staff_inv.explanation_received %} {% trans "Responded" %} {% elif staff_inv.explanation_requested %} {% trans "Pending" %} {% else %} {% endif %}
{% if not staff_inv.explanation_received %}
{% csrf_token %}
{% endif %}
{% csrf_token %}
{% else %}

{% trans "No staff members involved yet" %}

{% if can_manage_actions and complaint.is_active_status %} {% endif %}
{% endif %}