diff options
author | hardythe1 | 2014-04-03 12:29:56 +0530 |
---|---|---|
committer | hardythe1 | 2014-04-03 12:29:56 +0530 |
commit | c98b2f7ce70c668f947198f32328e56d5138f6f3 (patch) | |
tree | d377aecf01227920b92911d0a37b2495a02c3916 | |
parent | 1ba095a9a090ee426f250065e3d39bc57dcd7427 (diff) | |
download | Python-TBC-Interface-c98b2f7ce70c668f947198f32328e56d5138f6f3.tar.gz Python-TBC-Interface-c98b2f7ce70c668f947198f32328e56d5138f6f3.tar.bz2 Python-TBC-Interface-c98b2f7ce70c668f947198f32328e56d5138f6f3.zip |
change to make the image caption appear properly
-rw-r--r-- | tbc/templates/tbc/book-review-details.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tbc/templates/tbc/book-review-details.html b/tbc/templates/tbc/book-review-details.html index 81e5041..e55c23c 100644 --- a/tbc/templates/tbc/book-review-details.html +++ b/tbc/templates/tbc/book-review-details.html @@ -5,8 +5,8 @@ <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 style="margin-top:30px;">{{ image.caption }}</p></center> </div> {% endfor %} </div> |