{% load i18n %}

{% trans "PX Actions" %}

{% trans "View All" %}
{% for action in data.object_list %} {% empty %} {% endfor %}
{% trans "ID" %} {% trans "Title" %} {% trans "Type" %} {% trans "Priority" %} {% trans "Status" %} {% trans "Due Date" %} {% trans "Actions" %}
#{{ action.id }} {{ action.title }} {{ action.get_action_type_display }} {{ action.get_priority_display }} {{ action.get_status_display }} {% if action.due_date %} {{ action.due_date|date:"M d, Y" }} {% else %} - {% endif %} {% trans "View" %}

{% trans "No PX actions found" %}

{% if data.has_other_pages %}
{% trans "Showing" %} {{ data.start_index }}-{{ data.end_index }} {% trans "of" %} {{ data.paginator.count }} {% trans "actions" %}
{% if data.has_previous %} {% trans "Previous" %} {% endif %} {{ data.number }} {% if data.has_next %} {% trans "Next" %} {% endif %}
{% endif %}