diff options
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 %} |