{% load i18n %}
{% trans "Tasks" %}
View All
{% if data %}
{% for task in data %} {% endfor %}
ID Title Project Assigned To Priority Status Due Date Actions
{{ task.id }} {{ task.title|truncatewords:8 }} {% if task.is_overdue %} OVERDUE {% endif %} {% if task.project %} {{ task.project.name|truncatewords:3 }} {% else %} - {% endif %} {% if task.assigned_to %} {{ task.assigned_to.get_full_name }} {% else %} - {% endif %} {{ task.get_priority_display }} {{ task.get_status_display }} {% if task.due_date %} {{ task.due_date|date:"M d, Y" }} {% else %} - {% endif %}
{% if data.has_other_pages %} {% endif %} {% else %}

No tasks found

{% endif %}