pytask/templates/templatetags/_as_browse_textbooks.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 21 Jan 2011 00:27:33 +0530
changeset 504 3b78ea899168
parent 496 eb1982186306
permissions -rw-r--r--
Use the right URL reverse name for selecting claimed user.

<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 />