diff options
author | hardythe1 | 2014-02-18 12:25:50 +0530 |
---|---|---|
committer | hardythe1 | 2014-02-18 12:25:50 +0530 |
commit | 2e4bb1037c0fa14ad46725ee3dae57ecb5f6ca3a (patch) | |
tree | a64daeb265cccaef05b228f5d8d35f36d1cd4c54 /tbc/templates | |
parent | 63fcbed7f97797c016538aea362eca51139faa4d (diff) | |
download | Python-TBC-Interface-2e4bb1037c0fa14ad46725ee3dae57ecb5f6ca3a.tar.gz Python-TBC-Interface-2e4bb1037c0fa14ad46725ee3dae57ecb5f6ca3a.tar.bz2 Python-TBC-Interface-2e4bb1037c0fa14ad46725ee3dae57ecb5f6ca3a.zip |
removing contributor's email, adding reviewers name
Diffstat (limited to 'tbc/templates')
-rw-r--r-- | tbc/templates/tbc/book-details.html | 34 |
1 files changed, 29 insertions, 5 deletions
diff --git a/tbc/templates/tbc/book-details.html b/tbc/templates/tbc/book-details.html index 36c3936..8df1322 100644 --- a/tbc/templates/tbc/book-details.html +++ b/tbc/templates/tbc/book-details.html @@ -33,11 +33,35 @@ <hr> <a class="btn btn-primary btn-large" href="{% url 'tbc:GetZip' book.id %}" style="float:right; margin-top:20px;">Download Book as Zip</a> <table> -<tr><td>Author: <td>{{ book.author }} -<tr><td>Publisher: <td>{{ book.publisher_place }} -<tr><td>ISBN: <td>{{ book.isbn }} -<tr><td>Contributor: <td>{{ book.contributor.user.first_name }} {{ book.contributor.user.last_name }} -<tr><td>Email: <td>{{ book.contributor.user.email }}<br> + <tr> + <td>Author: </td> + <td>{{ book.author }}</td> + </tr> + <tr> + <td>Publisher: </td> + <td>{{ book.publisher_place }}</td> + </tr> + <tr> + <td>ISBN: </td> + <td>{{ book.isbn }}</td> + </tr> + <tr> + <td>Contributor: </td> + <td>{{ book.contributor.user.first_name }} {{ book.contributor.user.last_name }}</td> + </tr> + <tr> + <td>Institute/Organization: </td> + <td>{{ book.contributor.insti_org }}</td> + </tr> + <tr> + <td>Department/Designation: </td> + <td>{{ book.contributor.dept_desg }}</td> + </tr> + <tr> + <td>Reviewer: </td> + <td>{{ book.reviewer.name }}</td> + </tr> + </table> </div> {% endblock %} |