pytask/templates/task/view_textbook.html
changeset 500 42516ec56822
parent 498 9f04b7bcc333
child 501 b84d6a1d4603
--- a/pytask/templates/task/view_textbook.html	Thu Jan 20 17:44:02 2011 +0530
+++ b/pytask/templates/task/view_textbook.html	Thu Jan 20 17:45:39 2011 +0530
@@ -1,5 +1,6 @@
 {% extends "base.html" %}
 
+
 {% load form_helpers %}
 {% load browse_helpers %}
 
@@ -31,15 +32,14 @@
     {% endif %}
 
     {% if chapters %}
-    Chapters: <br />
-    <table>
-    {% for chap in chapters %}
-    <tr>
-	    <td><a href="{% url view_task chap.id %}">{{chap.title}}</a> </td>
-	    <td> {{chap.status}} </td>
-    </tr>
-    {% endfor %}
-    </table>
+      <table>
+      {% for chap in chapters %}
+      <tr>
+  	    <td><a href="{% url view_task chap.id %}">{{chap.title}}</a> </td>
+  	    <td> {{chap.status}} </td>
+      </tr>
+      {% endfor %}
+      </table>
     {% else %}
     There are no chapters in this textbook as of now.<br />
     {% endif %}