templates/task/browse.html
changeset 190 439e419b6c13
parent 12 a93eebabfeb1
equal deleted inserted replaced
189:8f5fb15ffd9b 190:439e419b6c13
     1 {% extends 'base.html' %}
     1 {% extends 'base.html' %}
     2 {% block content %}
     2 {% block content %}
     3     List of all the tasks:<br />
     3     List of all the tasks:<ul>
     4     {% for task in task_list %}
     4     {% for task in task_list %}
     5         <a href="/task/view/tid={{ task.id }}">{{ task.title }}</a><br />
     5         <li><a href="/task/view/tid={{ task.id }}">{{ task.title }}</a></li>
     6     {% endfor %}
     6     {% endfor %}
       
     7     </ul>
     7 {% endblock %}
     8 {% endblock %}