diff options
-rw-r--r-- | templates/task/browse.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/task/browse.html b/templates/task/browse.html index cd0103d..7ca8705 100644 --- a/templates/task/browse.html +++ b/templates/task/browse.html @@ -1,7 +1,8 @@ {% extends 'base.html' %} {% block content %} - List of all the tasks:<br /> + List of all the tasks:<ul> {% for task in task_list %} - <a href="/task/view/tid={{ task.id }}">{{ task.title }}</a><br /> + <li><a href="/task/view/tid={{ task.id }}">{{ task.title }}</a></li> {% endfor %} + </ul> {% endblock %} |