pytask/templates/templatetags/_as_browse_textbooks.html
changeset 496 eb1982186306
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pytask/templates/templatetags/_as_browse_textbooks.html	Thu Jan 20 07:55:38 2011 +0530
@@ -0,0 +1,12 @@
+<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 />