{% load i18n %}

{% trans "Related PX Actions" %}

{% if px_actions %}
{% for action in px_actions %}

{{ action.title }}

{{ action.description|truncatewords:20 }}

{{ action.get_status_display }} {{ action.get_priority_display }}
{% trans "View" %}
{% endfor %}
{% else %}

{% trans "No PX actions created yet" %}

{% if can_edit %} {% endif %}
{% endif %}