{% trans "Category" %}
{{ action.get_category_display }}
{% trans "Priority" %}
{{ action.get_priority_display }}
{% trans "Severity" %}
{{ action.get_severity_display }}
{% trans "Source" %}
{{ action.get_source_type_display }}
{% trans "Created" %}
{{ action.created_at|date:"d M Y, h:i A" }}
{% trans "Requires Approval" %}
{% if action.requires_approval %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}
{% trans "Description" %}
{{ action.description|linebreaksbr }}
{% trans "Action Plan" %}
{{ action.action_plan|linebreaksbr }}
{% trans "Outcome" %}
{{ action.outcome|linebreaksbr }}
{% trans "Related Complaint" %}
{{ action.source_object.reference_number }}
{{ action.source_object.title|truncatechars:60 }}
{% trans "Approval Required" %}
{% trans "This action is awaiting your approval." %}
{% trans "Quick Actions" %}
{% trans "Assignment Info" %}
{% trans "Assigned To" %}
{% if action.assigned_to %}{{ action.assigned_to.get_full_name }}
{% trans "Assigned" %} {{ action.assigned_at|date:"M d, Y" }}
{% trans "Unassigned" %}
{% endif %}{% trans "Approved By" %}
{{ action.approved_by.get_full_name }}
{{ action.approved_at|date:"M d, Y H:i" }}
{% trans "Closed By" %}
{{ action.closed_by.get_full_name }}
{{ action.closed_at|date:"M d, Y H:i" }}
{% trans "QI Project" %}
{% if action.qi_projects.exists %}-
{% for project in action.qi_projects.all %}
- {{ project.name }} {% endfor %}
{% trans "Convert this action to a QI project for long-term tracking." %}
{% endif %} {% if action.qi_projects.exists %}{% trans "Already Converted" %}{% else %}{% trans "Convert to Project" %}{% endif %}