pytask/templates/task/browse.html
author nishanth
Sat, 30 Jan 2010 13:10:11 +0530
changeset 13 4da58abdf6ff
parent 5 aea7e764c033
permissions -rw-r--r--
renamed templates/error.html to templates/show_msg.html and made changes accordingly in views/user.

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