pytask/templates/templatetags/_as_browse_textbooks.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 04 Feb 2011 16:38:21 +0530
changeset 558 fd3e6f5f01bd
parent 496 eb1982186306
permissions -rw-r--r--
Use the form helpers templatetag module in the addreviewer template.

<h2>{{ title }}</h2>
<h3>List of textbooks open for contribution</h3>
<ul>
  {% for task in tasks %}
    <li>
      <a href="{% url view_textbook task.id %}">
        {{ task.title }}
      </a>
    </li>
  {% endfor %}
</ul>
<br />