diff options
author | hardythe1 | 2014-08-25 17:17:36 +0530 |
---|---|---|
committer | hardythe1 | 2014-08-25 17:17:36 +0530 |
commit | 061b7df27cf96baa51c691bd32a455260785b100 (patch) | |
tree | bc12b65eb60f0463acdbe52023dc62d76c2e043c /tbc | |
parent | 6af64afbaaa92b1034c8d27138f5323914196e27 (diff) | |
download | Python-TBC-Interface-061b7df27cf96baa51c691bd32a455260785b100.tar.gz Python-TBC-Interface-061b7df27cf96baa51c691bd32a455260785b100.tar.bz2 Python-TBC-Interface-061b7df27cf96baa51c691bd32a455260785b100.zip |
correcting error in the table
Diffstat (limited to 'tbc')
-rw-r--r-- | tbc/templates/tbc/completed_books.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tbc/templates/tbc/completed_books.html b/tbc/templates/tbc/completed_books.html index 60c0b26..99c1790 100644 --- a/tbc/templates/tbc/completed_books.html +++ b/tbc/templates/tbc/completed_books.html @@ -37,14 +37,14 @@ function submitCategory() <th>Sr #</th> <th>Book</th> <tr> + {% for book in completed_books %} <td> {{ forloop.counter }} </td> <td> - {% for book in completed_books %} <a href="{% url 'tbc:BookDetails' book.id %}">{{ book.title }} by {{ book.author }}</a> - {% endfor %} </td> + {% endfor %} </tr> </table> |