From 694b28b33fd82c381c2bac3cc7207f611d17e039 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 25 Aug 2014 17:13:14 +0530 Subject: adding table --- tbc/templates/tbc/completed_books.html | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/tbc/templates/tbc/completed_books.html b/tbc/templates/tbc/completed_books.html index 1acec9e..dead5d2 100644 --- a/tbc/templates/tbc/completed_books.html +++ b/tbc/templates/tbc/completed_books.html @@ -33,11 +33,20 @@ function submitCategory() -
    - {% for book in completed_books %} -
  1. {{ book.title }} by {{ book.author }}
  2. - {% endfor %} -
+ + + + + + + +
Sr #Book
+ {{ forloop.counter }} + + {% for book in completed_books %} +
  • {{ book.title }} by {{ book.author }}
  • + {% endfor %} +

    -- cgit