{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Adverse Actions" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "Filters" %}

{% trans "All Adverse Actions" %} ({{ page_obj.paginator.count }})

{% trans "New Adverse Action" %}
{% if page_obj %}
{% for action in page_obj %} {% empty %} {% endfor %}
{% 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" %}

{% if page_obj.has_other_pages %}

{% 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 %}

{% if page_obj.has_previous %} {% trans "Previous" %} {% endif %} {% if page_obj.has_next %} {% trans "Next" %} {% endif %}
{% endif %} {% endif %}
{% endblock %}