changeset 190 | 439e419b6c13 |
parent 12 | a93eebabfeb1 |
--- a/templates/task/browse.html Wed Mar 03 05:34:32 2010 +0530 +++ b/templates/task/browse.html Wed Mar 03 05:36:21 2010 +0530 @@ -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 %}