{% 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.department.errors %}
{{ form.department.errors }}
{% endif %}

{% trans "Select the department to involve in this complaint." %}

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

{% trans "Primary:" %} {% trans "Main responsible department for resolution" %}

{% trans "Secondary:" %} {% trans "Assisting the primary department" %}

{% trans "Coordination:" %} {% trans "Only for coordination purposes" %}

{% trans "Investigating:" %} {% trans "Leading the investigation" %}

{% trans "The primary department takes lead responsibility for this complaint." %}

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

{% trans "Optionally assign a specific user from this department." %}

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