summaryrefslogtreecommitdiff
path: root/templates/task/browse.html
blob: 7ca870500bb4ebda4cdbf657d71097719b34761a (plain)
1
2
3
4
5
6
7
8
{% extends 'base.html' %}
{% block content %}
    List of all the tasks:<ul>
    {% for task in task_list %}
        <li><a href="/task/view/tid={{ task.id }}">{{ task.title }}</a></li>
    {% endfor %}
    </ul>
{% endblock %}