diff options
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 %} |