diff options
author | hardythe1 | 2013-11-12 02:13:58 +0530 |
---|---|---|
committer | hardythe1 | 2013-11-12 02:13:58 +0530 |
commit | 9e58057ed4e2637d1009c4fe891ad0f126662b85 (patch) | |
tree | 07769c62c3e70bb3c902a0d39d049135bf46d4d1 /tbc/templates | |
parent | 4b70f4abf1fc29cc36ebb2179e4ddb4fa5258a95 (diff) | |
download | Python-TBC-Interface-9e58057ed4e2637d1009c4fe891ad0f126662b85.tar.gz Python-TBC-Interface-9e58057ed4e2637d1009c4fe891ad0f126662b85.tar.bz2 Python-TBC-Interface-9e58057ed4e2637d1009c4fe891ad0f126662b85.zip |
wrote function to send mail
Diffstat (limited to 'tbc/templates')
-rw-r--r-- | tbc/templates/tbc/book-details.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tbc/templates/tbc/book-details.html b/tbc/templates/tbc/book-details.html index f2912f5..5c141b1 100644 --- a/tbc/templates/tbc/book-details.html +++ b/tbc/templates/tbc/book-details.html @@ -1,12 +1,13 @@ {% extends 'base.html' %} {% load static %} + {% block content %} <center><h3>{{ book.title }}</h3></center> <div class="row-fluid"> {% for image in images %} <div class ="module-list"> - <img src="{% static 'uploads/' %}{{ image.image }}"> - <center><p>{{ image.caption }}</p></center> + <img src="{% static 'uploads/' %}{{ image.image }}"> + <center><p>{{ image.caption }}</p></center> </div> {% endfor %} </div> |