diff -r a9c458c7782a -r aea7e764c033 pytask/templates/task/browse.html
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/pytask/templates/task/browse.html Fri Jan 29 19:27:26 2010 +0530
@@ -0,0 +1,7 @@
+{% extends 'base.html' %}
+{% block content %}
+ List of all the tasks:
+ {% for task in task_list %}
+ {{ task.title }}
+ {% endfor %}
+{% endblock %}