diff options
author | nishanth | 2010-03-03 05:30:53 +0530 |
---|---|---|
committer | nishanth | 2010-03-03 05:30:53 +0530 |
commit | aba25958cad895353a8b03b2d41520680bf898d3 (patch) | |
tree | edf883db0d3f98d146344d20e252998725fe2c0b | |
parent | 100a0c9c69bfad9519f2886977a30b6a18fe0fe9 (diff) | |
download | pytask-aba25958cad895353a8b03b2d41520680bf898d3.tar.gz pytask-aba25958cad895353a8b03b2d41520680bf898d3.tar.bz2 pytask-aba25958cad895353a8b03b2d41520680bf898d3.zip |
removed linebreak before billeted list in homepage.
-rw-r--r-- | templates/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/index.html b/templates/index.html index 44f5e6f..ce8e2d9 100644 --- a/templates/index.html +++ b/templates/index.html @@ -86,7 +86,7 @@ --> {% if unpublished_tasks %} - Unpublished tasks viewable by you:<br /><ul> + Unpublished tasks viewable by you:<ul> {% for a_task in unpublished_tasks %} <li><a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a></li> {% endfor %} @@ -95,16 +95,16 @@ {% endif %} {% if mentored_tasks %} - Tasks you are mentoring:<br /><ul> + Tasks you are mentoring:<ul> {% for a_task in mentored_tasks %} - <li></li><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 /><ul> + Tasks that have been assigned to you:<ul> {% for a_task in working_tasks %} <li><a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a></li> {% endfor %} @@ -113,7 +113,7 @@ {% endif %} {% if claimed_tasks %} - Tasks claimed but still not assigned to you:<br /><ul> + Tasks claimed but still not assigned to you:<ul> {% for a_task in claimed_tasks %} <li><a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a></li> {% endfor %} |