{% load i18n %}
| {% 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" %} |
||||||