diff options
-rw-r--r-- | tbc/templates/tbc/book-details.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tbc/templates/tbc/book-details.html b/tbc/templates/tbc/book-details.html index 38ec6e7..36c3936 100644 --- a/tbc/templates/tbc/book-details.html +++ b/tbc/templates/tbc/book-details.html @@ -7,7 +7,7 @@ {% for image in images %} <div class ="module-list"> <img src="{% static 'uploads/' %}{{ image.image }}"> - <center><p>{{ image.caption }}</p></center> + <center><p style="margin-top:30px;">{{ image.caption }}</p></center> </div> {% endfor %} </div> @@ -24,6 +24,9 @@ <td> <a href="http://nbviewer.ipython.org/url/tbc-python.fossee.in{% static 'uploads/' %}{{ chapter.notebook }}">{{ chapter.name }}</a> </td> + <td> + <a href="{% static 'uploads/' %}{{ chapter.notebook }}">Download</a> + </td> </tr> {% endfor %} </table> |