bulleted list in browse tasks page.
authornishanth
Wed, 03 Mar 2010 05:36:21 +0530
changeset 190 439e419b6c13
parent 189 8f5fb15ffd9b
child 191 3bfe70742aa8
bulleted list in browse tasks page.
templates/task/browse.html
--- 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 %}