diff options
author | nishanth | 2010-03-03 05:14:56 +0530 |
---|---|---|
committer | nishanth | 2010-03-03 05:14:56 +0530 |
commit | 100a0c9c69bfad9519f2886977a30b6a18fe0fe9 (patch) | |
tree | e002f3c5cde5ceb9a8c107cd1992b084141553ab /templates/index.html | |
parent | 5dfb4ac386203b008fed85ff959f523a9a3197a3 (diff) | |
download | pytask-100a0c9c69bfad9519f2886977a30b6a18fe0fe9.tar.gz pytask-100a0c9c69bfad9519f2886977a30b6a18fe0fe9.tar.bz2 pytask-100a0c9c69bfad9519f2886977a30b6a18fe0fe9.zip |
now subtasks and dependencies in view_task page and other task_lists in home page are displayed as bulleted lists.
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 20 |
1 files changed, 12 insertions, 8 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:<br /> + Unpublished tasks viewable by you:<br /><ul> {% for a_task in unpublished_tasks %} - <a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a> + <li><a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a></li> {% endfor %} + </ul> <br /><br /> {% endif %} {% if mentored_tasks %} - Tasks you are mentoring:<br /> + Tasks you are mentoring:<br /><ul> {% for a_task in mentored_tasks %} - <a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a> + <li></li><a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a></li> {% endfor %} + </ul> <br /><br > {% endif %} {% if working_tasks %} - Tasks that have been assigned to you:<br /> + Tasks that have been assigned to you:<br /><ul> {% for a_task in working_tasks %} - <a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a> + <li><a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a></li> {% endfor %} + </ul> <br /><br /> {% endif %} {% if claimed_tasks %} - Tasks claimed but still not assigned to you:<br /> + Tasks claimed but still not assigned to you:<br /><ul> {% for a_task in claimed_tasks %} - <a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a> + <li><a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a></li> {% endfor %} + </ul> <br /><br /> {% endif %} |