1 {% extends 'base.html' %}
2 {% block content %}
3 List of all the tasks:<br />
4 {% for task in task_list %}
5 <a href="/task/view/tid={{ task.id }}">{{ task.title }}</a><br />
6 {% endfor %}
7 {% endblock %}