templates/task/browse.html
author Nishanth Amuluru <nishanth@fossee.in>
Wed, 05 Jan 2011 18:52:48 +0530
changeset 217 307f699e6102
parent 190 439e419b6c13
permissions -rw-r--r--
Now browse tasks page does not display textbooks

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