diff --git a/todo/templates/todo/list_detail.html b/todo/templates/todo/list_detail.html index 0f8ba8a..5e4286a 100644 --- a/todo/templates/todo/list_detail.html +++ b/todo/templates/todo/list_detail.html @@ -4,33 +4,32 @@ {% block content %} {% if list_slug == "mine" %} @@ -45,34 +44,34 @@ {% csrf_token %} {# Only show task adder if viewing a list is not "mine" #} {% if list_slug != "mine" %} -

→ Click to add task ←

+

→ Click to add task ←

+
+ + + + + + + + + + + + + + +
{{ form.title.errors }}{{ form.due_date.errors }}
{{ form.title }} {{ form.due_date }} {{ form.assigned_to }}
+ + {{ form.note }} +

*Email notifications will only be sent if task is assigned to someone besides yourself.

+
-
- - - - - - - - - - - - - - -
{{ form.title.errors }}{{ form.due_date.errors }}
{{ form.title }} {{ form.due_date }} {{ form.assigned_to }}
- {{ form.note }} -

*Email notifications will only be sent if task is assigned to someone besides yourself.

-
- - - - - -

-
+ + + + +

+
{% endif %} {% if not view_completed %} @@ -80,85 +79,82 @@

Incomplete tasks :: Drag rows to set priorities

- - - - - - - - - - {% if list_slug == "mine" %} - - {% endif %} - - + + + + + + + + + + {% if list_slug == "mine" %} + + {% endif %} + + {% for task in task_list %} - - - - - - - - - - {% if list_slug == "mine" %} - - {% endif %} - - + + + + + + + + + + {% if list_slug == "mine" %} + + {% endif %} + + {% endfor %}
DoneTaskCreatedDue onOwnerAssignedNoteCommListDel
DoneTaskCreatedDue onOwnerAssignedNoteCommListDel
{{ task.title|truncatewords:20 }}{{ task.created_date|date:"m/d/Y" }} - {% if task.overdue_status %}{% endif %} - {{ task.due_date|date:"m/d/Y" }} - {% if task.overdue_status %}{% endif %} - {{ task.created_by }}{% if task.assigned_to %}{{ task.assigned_to }}{% else %}Anyone{% endif %}{% if task.note %}≈{% endif %} {% if task.comment_set.all.count != 0 %}{{ task.comment_set.all.count }}{% endif %}{{ task.list }}
{{ task.title|truncatewords:20 }}{{ task.created_date|date:"m/d/Y" }} + {% if task.overdue_status %}{% endif %} + {{ task.due_date|date:"m/d/Y" }} + {% if task.overdue_status %}{% endif %} + {{ task.created_by }}{% if task.assigned_to %}{{ task.assigned_to }}{% else %}Anyone{% endif %}{% if task.note %}≈{% endif %} {% if task.comment_set.all.count != 0 %}{{ task.comment_set.all.count }}{% endif %}{{ task.list }}

-

View completed tasks

+

View completed tasks

{% else %}

Completed tasks

- - - - - - - - - {% if list_slug == "mine" %} - - {% endif %} - - + + + + + + + + {% if list_slug == "mine" %} {% endif %} + + {% for task in completed_list %} - - - - - - - - - {% endfor %} + + + + + + + + + {% endfor %} -
UndoTaskCreatedCompleted onNoteCommListDel
UndoTaskCreatedCompleted onNoteCommListDel
{{ task.title|truncatewords:20 }}{{ task.created_date|date:"m/d/Y" }}{{ task.completed_date|date:"m/d/Y" }}{% if task.note %}≈{% endif %} {% if task.comment_set.all.count != 0 %}{{ task.comment_set.all.count }}{% endif %} -
{{ task.title|truncatewords:20 }}{{ task.created_date|date:"m/d/Y" }}{{ task.completed_date|date:"m/d/Y" }}{% if task.note %}≈{% endif %} {% if task.comment_set.all.count != 0 %}{{ task.comment_set.all.count }}{% endif %} +
-

+ +

-

View incomplete tasks

+

View incomplete tasks

{% endif %} {% if user.is_staff %} - {% if list_slug != "mine" %} -

Delete this list

- {% endif %} + {% if list_slug != "mine" %} +

Delete this list

+ {% endif %} {% endif %} {% endif %}