diff options
author | hardythe1 | 2014-08-25 17:15:02 +0530 |
---|---|---|
committer | hardythe1 | 2014-08-25 17:15:02 +0530 |
commit | 6af64afbaaa92b1034c8d27138f5323914196e27 (patch) | |
tree | fe7c18abe5bf3f085a72ab97ea09522a6e4c2f0f /tbc | |
parent | 694b28b33fd82c381c2bac3cc7207f611d17e039 (diff) | |
download | Python-TBC-Interface-6af64afbaaa92b1034c8d27138f5323914196e27.tar.gz Python-TBC-Interface-6af64afbaaa92b1034c8d27138f5323914196e27.tar.bz2 Python-TBC-Interface-6af64afbaaa92b1034c8d27138f5323914196e27.zip |
adding table
Diffstat (limited to 'tbc')
-rw-r--r-- | tbc/templates/tbc/completed_books.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tbc/templates/tbc/completed_books.html b/tbc/templates/tbc/completed_books.html index dead5d2..60c0b26 100644 --- a/tbc/templates/tbc/completed_books.html +++ b/tbc/templates/tbc/completed_books.html @@ -42,7 +42,7 @@ function submitCategory() </td> <td> {% for book in completed_books %} - <li><a href="{% url 'tbc:BookDetails' book.id %}">{{ book.title }} by {{ book.author }}</a></li> + <a href="{% url 'tbc:BookDetails' book.id %}">{{ book.title }} by {{ book.author }}</a> {% endfor %} </td> </tr> |