Category tally:
- -... all of which will be irretrievably - blown away. Are you sure you want to do that?
- - - - -{% else %} -Sorry, you don't have permission to delete lists. Please contact your group administrator.
-{% endif %} {% endblock %} \ No newline at end of file diff --git a/todo/templates/todo/email/assigned_body.txt b/todo/templates/todo/email/assigned_body.txt deleted file mode 100644 index deb71bc..0000000 --- a/todo/templates/todo/email/assigned_body.txt +++ /dev/null @@ -1,17 +0,0 @@ -{{ task.assigned_to.first_name }} - - -A new task on the list {{ task.task_list.name }} has been assigned to you by {{ task.created_by.get_full_name }}: - -{{ task.title }} - -{% if task.note %} -{% autoescape off %} -Note: {{ task.note }} -{% endautoescape %} -{% endif %} - -Task details/comments: -http://{{ site }}{% url 'todo:task_detail' task.id %} - -List {{ task.task_list.name }}: -http://{{ site }}{% url 'todo:list_detail' task.task_list.id task.task_list.slug %} diff --git a/todo/templates/todo/email/assigned_subject.txt b/todo/templates/todo/email/assigned_subject.txt deleted file mode 100644 index 4e1e2b8..0000000 --- a/todo/templates/todo/email/assigned_subject.txt +++ /dev/null @@ -1 +0,0 @@ -A new task has been assigned to you - {% autoescape off %}{{ task.title }}{% endautoescape %} \ No newline at end of file diff --git a/todo/templates/todo/email/newcomment_body.txt b/todo/templates/todo/email/newcomment_body.txt deleted file mode 100644 index 81947ff..0000000 --- a/todo/templates/todo/email/newcomment_body.txt +++ /dev/null @@ -1,16 +0,0 @@ -A new task comment has been added. - -Task: {{ task.title }} -Commenter: {{ user.first_name }} {{ user.last_name }} - -Comment: -{% autoescape off %} -{{ body }} -{% endautoescape %} - -Task details/comments: -https://{{ site }}{% url 'todo:task_detail' task.id %} - -List {{ task.task_list.name }}: -https://{{ site }}{% url 'todo:list_detail' task.task_list.id task.task_list.slug %} - diff --git a/todo/templates/todo/import_csv.html b/todo/templates/todo/import_csv.html deleted file mode 100644 index 9d5cb85..0000000 --- a/todo/templates/todo/import_csv.html +++ /dev/null @@ -1,84 +0,0 @@ -{% extends "todo/base.html" %} -{% load static %} - -{% block title %}Import CSV{% endblock %} - -{% block content %} -- Batch-import tasks by uploading a specifically-formatted CSV. - See documentation for formatting rules. - Successs and failures will be reported here. -
- - {% if results %} -- Summary: -
-- Upserts (tasks created or updated): -
-- Errors (tasks NOT created or updated): -
-In workgroup "{{ task_list.group }}" - drag rows to set priorities.
- {% endif %} - -Task | -Created | -Due on | -Owner | -Assigned | -Mark | -
---|---|---|---|---|---|
- {{ task.title|truncatewords:10 }} - | -- {{ task.created_date|date:"m/d/Y" }} - | -- - {{ task.due_date|date:"m/d/Y" }} - - | -- {{ task.created_by }} - | -- {% if task.assigned_to %}{{ task.assigned_to }}{% else %}Anyone{% endif %} - | -- - | -
{{ task_count }} tasks in {{ list_count }} list{{ list_count|pluralize }}
- - {% regroup lists by group as section_list %} - {% for group in section_list %} -
-
- {{ f.title }}
-
-
-
- In list:
-
- {{ f.task_list.name }}
-
-
Assigned to: {% if f.assigned_to %}{{ f.assigned_to }}{% else %}Anyone{% endif %}
-
Complete: {{ f.completed|yesno:"Yes,No" }}
-
-
File | -Uploaded | -By | -Type | -Remove | -
---|---|---|---|---|
{{ attachment.filename }} | -{{ attachment.timestamp }} | -{{ attachment.added_by.get_full_name }} | -{{ attachment.extension.lower }} | -- - | -
Comments on this task
- {% for comment in comment_list %} -No comments (yet).
- {% endif %} -