{% extends 'layouts/base.html' %} {% load i18n %} {% block title %}{{ title }} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Back to Complaint" %}

{{ title }}

{% trans "Complaint:" %} {{ complaint.reference_number }} - {{ complaint.title|truncatechars:50 }}

{% csrf_token %}
{% if form.staff.errors %}
{{ form.staff.errors }}
{% endif %}

{% trans "Select the staff member involved in this complaint." %}

{% if form.role.errors %}
{{ form.role.errors }}
{% endif %}

{% trans "Accused/Involved:" %} {% trans "Staff member involved in the incident" %}

{% trans "Witness:" %} {% trans "Staff member who witnessed the incident" %}

{% trans "Responsible:" %} {% trans "Staff responsible for resolving the complaint" %}

{% trans "Investigator:" %} {% trans "Staff investigating the complaint" %}

{% trans "Support:" %} {% trans "Supporting the resolution process" %}

{% trans "Coordinator:" %} {% trans "Coordinating between departments" %}

{% if form.notes.errors %}
{{ form.notes.errors }}
{% endif %}
{% trans "Cancel" %}
{% endblock %}