pytask/templates/templatetags/_as_browse_textbooks.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sun, 23 Jan 2011 03:21:42 +0530
changeset 515 5a90ac22843d
parent 496 eb1982186306
permissions -rw-r--r--
Style fix.

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