pytask/templates/templatetags/_as_browse_textbooks.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Thu, 20 Jan 2011 07:55:38 +0530
changeset 496 eb1982186306
permissions -rw-r--r--
Add templatetags for listing textbooks. This templatetag must be refactored to be utilized for tasks also.

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