diff options
author | nishanth | 2010-03-03 05:36:21 +0530 |
---|---|---|
committer | nishanth | 2010-03-03 05:36:21 +0530 |
commit | 2e905d31b36a5b5cc46962dae2270bfc33c76caf (patch) | |
tree | 43742b1a4957ac7baabc244a3abe09a2ee578d97 | |
parent | d16aa3a81d9cacefbf4fe45b6380c0219b99a8e7 (diff) | |
download | pytask-2e905d31b36a5b5cc46962dae2270bfc33c76caf.tar.gz pytask-2e905d31b36a5b5cc46962dae2270bfc33c76caf.tar.bz2 pytask-2e905d31b36a5b5cc46962dae2270bfc33c76caf.zip |
bulleted list in browse tasks page.
-rw-r--r-- | templates/task/browse.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/task/browse.html b/templates/task/browse.html index cd0103d..7ca8705 100644 --- a/templates/task/browse.html +++ b/templates/task/browse.html @@ -1,7 +1,8 @@ {% extends 'base.html' %} {% block content %} - List of all the tasks:<br /> + List of all the tasks:<ul> {% for task in task_list %} - <a href="/task/view/tid={{ task.id }}">{{ task.title }}</a><br /> + <li><a href="/task/view/tid={{ task.id }}">{{ task.title }}</a></li> {% endfor %} + </ul> {% endblock %} |