From 100a0c9c69bfad9519f2886977a30b6a18fe0fe9 Mon Sep 17 00:00:00 2001 From: nishanth Date: Wed, 3 Mar 2010 05:14:56 +0530 Subject: now subtasks and dependencies in view_task page and other task_lists in home page are displayed as bulleted lists. --- templates/index.html | 20 ++++++++++++-------- templates/task/view.html | 12 +++++++----- 2 files changed, 19 insertions(+), 13 deletions(-) diff --git a/templates/index.html b/templates/index.html index 6346165..44f5e6f 100644 --- a/templates/index.html +++ b/templates/index.html @@ -86,34 +86,38 @@ --> {% if unpublished_tasks %} - Unpublished tasks viewable by you:
+ Unpublished tasks viewable by you:


{% endif %} {% if mentored_tasks %} - Tasks you are mentoring:
+ Tasks you are mentoring:


{% endif %} {% if working_tasks %} - Tasks that have been assigned to you:
+ Tasks that have been assigned to you:


{% endif %} {% if claimed_tasks %} - Tasks claimed but still not assigned to you:
+ Tasks claimed but still not assigned to you:


{% endif %} diff --git a/templates/task/view.html b/templates/task/view.html index b0d96c9..c95fe13 100644 --- a/templates/task/view.html +++ b/templates/task/view.html @@ -52,17 +52,18 @@ {% if task.tags.count %} Tags: {% for tag in task.tags %} - tag + {{tag}} {% endfor %}
{% endif %} {% if deps %} -
The task has following dependencies.
+
The task has following dependencies. {% if can_mod_tasks %} add more dependencies @@ -72,10 +73,11 @@ {% else %} {% if subs %} - The task has following sub tasks.
+ The task has following sub tasks. {% if can_mod_tasks %} add more subtasks -- cgit