Start on download system

This commit is contained in:
Mike Young
2019-11-18 12:46:58 -05:00
parent 9cd352c319
commit 765a93a2c8
8 changed files with 26 additions and 10 deletions

View File

@@ -17,13 +17,13 @@
</div>
<div class="app_body" >
<div class="left_col">
left_col
Navigation and page controls will go here
</div>
<div class="shelf">
<div class="shelf_contents" >
<ul id="book_shelf">
{% for book in Books %}
<li class="shelf_item"><img alt="{{ book.title }}" src="data:image;base64,{{ book.cover | bin_2_img }}" class="book_thumb"/> </li>
<a href="{% url 'download' book.file_name %}" class="book_link"><li class="shelf_item"><img alt="{{ book.title }}" src="data:image;base64,{{ book.cover | bin_2_img }}" class="book_thumb"/> </li></a>
{% endfor %}
</ul>
</div>