From 6185bd43a398fe427b60069f551e8ab357e5d0c4 Mon Sep 17 00:00:00 2001 From: gichiraanne Date: Wed, 1 Mar 2017 13:30:54 +0300 Subject: [PATCH] Linking the tasks displayed on the home page to the individual task page --- templates/home.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/home.html b/templates/home.html index 0d6a036f..c9c7fc38 100644 --- a/templates/home.html +++ b/templates/home.html @@ -253,7 +253,7 @@

Assigned To {% for task in recent_tasks %} - {{ task.task }} + {{ task.task }} {{ task.created_date | date}} {{ task.due_date | date}} {% if task.status == 1 %} Active {%elif task.status == 2%}Re-Opened{% elif task.status == 3%}Closed{% elif task.status == 4%}Cancelled {% endif %} @@ -294,7 +294,7 @@

{% for task in tasks_created %} - {{ task.task }} + {{ task.task }} {{ task.created_date | date}} {{ task.due_date | date}} {% if task.status == 1 %} Active {%elif task.status == 2%}Re-Opened{% elif task.status == 3%}Completed{% elif task.status == 4%}Cancelled {% endif %} @@ -332,7 +332,7 @@

You currently have no tasks Go to {{ task.task }} + {{ task.task }} {{ task.created_date | date}} {{ task.due_date | date}} {% if task.status == 1 %} Active {%elif task.status == 2%}Re-Opened{% elif task.status == 3%}Completed{% elif task.status == 4%}Cancelled {% endif %}