pytask/templates/task/browse.html
branchbuildout
changeset 227 3c8f3b0e5b00
equal deleted inserted replaced
214:679c7e237052 227:3c8f3b0e5b00
       
     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 %}