{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Adverse Actions" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Track and manage adverse actions related to complaints" %}
| {% trans "Complaint" %} | {% trans "Type" %} | {% trans "Severity" %} | {% trans "Date" %} | {% trans "Status" %} | {% trans "Escalated" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|
|
{{ action.complaint.reference_number|truncatechars:15 }}
{{ action.complaint.title|truncatechars:30 }} |
{{ action.get_action_type_display }} | {{ action.get_severity_display }} |
{{ action.incident_date|date:"Y-m-d" }} |
{{ action.get_status_display }} | {% if action.is_escalated %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %} | |
|
{% trans "No adverse actions found" %} {% trans "Create your first adverse action to get started" %} |
||||||
{% blocktrans with start=page_obj.start_index end=page_obj.end_index total=page_obj.paginator.count %} Showing {{ start }} to {{ end }} of {{ total }} adverse actions {% endblocktrans %}