pytask/templates/task/browse.html
author nishanth
Sat, 30 Jan 2010 13:04:58 +0530
changeset 12 c823b42970a4
parent 5 aea7e764c033
permissions -rw-r--r--
added events/task.py and templates/error.html

{% 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 %}