{% 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 #}
{% include 'todo/include/task_edit.html' %}

{% endif %} {% if tasks %} {% if list_slug == "mine" %}

Tasks assigned to me (in all groups)

{% else %}

{{ view_completed|yesno:"Completed tasks, Tasks" }} in "{{ task_list.name }} ({{ tasks.count }})"

In workgroup "{{ task_list.group }}" - drag rows to set priorities.

{% endif %} {% for task in tasks %} {% endfor %}
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 %}
{% csrf_token %}
{% include 'todo/include/toggle_delete.html' %} {% else %}

No tasks on this list yet (add one!)

{% include 'todo/include/toggle_delete.html' %} {% endif %} {% endblock %} {% block extra_js %} {% endblock extra_js %}