diff options
author | nishanth | 2010-02-04 22:12:48 +0530 |
---|---|---|
committer | nishanth | 2010-02-04 22:12:48 +0530 |
commit | 6abcf4483cdfed7da478c626f48d22bee8448047 (patch) | |
tree | 505dc76ec291e7cf3c4e23add3ec1cca44f334c0 /templates/task/browse.html | |
parent | 3ed1f252c1d278fe306f533742d4016f5d3ba49e (diff) | |
download | pytask-6abcf4483cdfed7da478c626f48d22bee8448047.tar.gz pytask-6abcf4483cdfed7da478c626f48d22bee8448047.tar.bz2 pytask-6abcf4483cdfed7da478c626f48d22bee8448047.zip |
created forms, views, templates, actions for home_page, browse_task.
Diffstat (limited to 'templates/task/browse.html')
-rw-r--r-- | templates/task/browse.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/task/browse.html b/templates/task/browse.html new file mode 100644 index 0000000..cd0103d --- /dev/null +++ b/templates/task/browse.html @@ -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 %} |