pytask/templates/task/browse.html
branchbuildout
changeset 227 3c8f3b0e5b00
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pytask/templates/task/browse.html	Thu Jan 06 19:07:04 2011 +0530
@@ -0,0 +1,8 @@
+{% extends 'base.html' %}
+{% block content %}
+    List of all the tasks:<ul>
+    {% for task in task_list %}
+        <li><a href="/task/view/tid={{ task.id }}">{{ task.title }}</a></li>
+    {% endfor %}
+    </ul>
+{% endblock %}