templates/task/browse.html
changeset 12 a93eebabfeb1
child 190 439e419b6c13
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/task/browse.html	Thu Feb 04 22:12:48 2010 +0530
@@ -0,0 +1,7 @@
+{% extends 'base.html' %}
+{% block content %}
+    List of all the tasks:<br />
+    {% for task in task_list %}
+        <a href="/task/view/tid={{ task.id }}">{{ task.title }}</a><br />
+    {% endfor %}
+{% endblock %}