pytask/templates/task/browse.html
author nishanth
Sat, 30 Jan 2010 13:03:09 +0530
changeset 11 d28fcc644fbb
parent 5 aea7e764c033
permissions -rw-r--r--
implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.

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