author | anoop |
Mon, 08 Mar 2010 13:37:26 +0530 | |
changeset 207 | 2de52334fe6c |
parent 190 | 439e419b6c13 |
permissions | -rw-r--r-- |
12
a93eebabfeb1
created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
a93eebabfeb1
created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff
changeset
|
2 |
{% block content %} |
190 | 3 |
List of all the tasks:<ul> |
12
a93eebabfeb1
created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff
changeset
|
4 |
{% for task in task_list %} |
190 | 5 |
<li><a href="/task/view/tid={{ task.id }}">{{ task.title }}</a></li> |
12
a93eebabfeb1
created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff
changeset
|
6 |
{% endfor %} |
190 | 7 |
</ul> |
12
a93eebabfeb1
created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff
changeset
|
8 |
{% endblock %} |