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