From df3751ecb826745ed7a6106a4d80f022651bc612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=AD=C3=B0ir=20Valberg=20Gu=C3=B0mundsson?= Date: Sat, 4 Aug 2018 18:13:51 +0200 Subject: [PATCH] Remove include since we have everything for tasks in one place now. --- src/teams/templates/includes/team_tasks.html | 44 -------------------- 1 file changed, 44 deletions(-) delete mode 100644 src/teams/templates/includes/team_tasks.html diff --git a/src/teams/templates/includes/team_tasks.html b/src/teams/templates/includes/team_tasks.html deleted file mode 100644 index f285eef4..00000000 --- a/src/teams/templates/includes/team_tasks.html +++ /dev/null @@ -1,44 +0,0 @@ -
-
-

Tasks

-
-
-

The {{ team.name }} Team is responsible for the following tasks

- - - - - - - - - - - - {% for task in team.tasks.all %} - - - - - - - - {% endfor %} - -
NameDescriptionWhenCompletedAction
{{ task.name }}{{ task.description }} -
    -
  • Start: {{ task.when.lower|default:"N/A" }}
    -
  • Finish: {{ task.when.upper|default:"N/A" }}
    -
-
{{ task.completed }} - Details - {% if request.user in team.responsible_members.all %} - Edit Task - {% endif %} -
- {% if request.user in team.responsible_members.all %} - Create Task - {% endif %} -
-
-