{% extends "todo/base.html" %} {% load static %} {% block title %}Todo List: {{ task_list.name }}{% endblock %} {% block content %} {% if list_slug != "mine" %} {# Task edit / new task form #}
In workgroup "{{ task_list.group }}" - drag rows to set priorities.
{% endif %}| Task | Created | Due on | Owner | Assigned | Mark |
|---|---|---|---|---|---|
| {% if task.note %} {# Native browser tooltip - no JS or Popper dependency, and auto-escaped. #} {% with note_preview=task.note|striptags|truncatewords:30 %} {{ task.title|truncatewords:10 }}⁺ {% endwith %} {% else %} {{ task.title|truncatewords:10 }} {% endif %} | {{ task.created_date|date:"m/d/Y" }} | {{ task.due_date|date:"m/d/Y" }} | {{ task.created_by }} | {% if task.assigned_to.all %}{{ task.assigned_to.all|join:", " }}{% else %}Anyone{% endif %} |