{% load i18n %}

{% trans "Tasks" %}

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

{% trans "No tasks found" %}

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