diff options
-rw-r--r-- | tbc/templates/tbc/completed_books.html | 19 |
1 files 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() </select> </form> </center> - <ol> - {% for book in completed_books %} - <li><a href="{% url 'tbc:BookDetails' book.id %}">{{ book.title }} by {{ book.author }}</a></li> - {% endfor %} - </ol> + <table class="table table-bordered table-hover"> + <th>Sr #</th> + <th>Book</th> + <tr> + <td> + {{ forloop.counter }} + </td> + <td> + {% for book in completed_books %} + <li><a href="{% url 'tbc:BookDetails' book.id %}">{{ book.title }} by {{ book.author }}</a></li> + {% endfor %} + </td> + </tr> + </table> <hr> |