|
|
|
@ -1,9 +1,8 @@
|
|
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
|
|
<h1 class="header">{{ book.title }}</h1>
|
|
|
|
|
<div style="float:right; padding-right: 140px;">
|
|
|
|
|
<img class="no_cover" id="{{ book.title }}" src="../uploads/cover/{{ book.cover }}" width="280px" onerror="if (this.src != '../uploads/cover/{{ book.cover }}') this.src = '../static/img/default_cover.gif';"></div>
|
|
|
|
@ -63,6 +62,7 @@
|
|
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
<a href="{{url_for('add_to_stack', id=book.id)}}">Add book to Stack ===></a> <br><br>
|
|
|
|
|
|
|
|
|
|
<a href="../uploads/{{ book.file }}">download {{ book.fileformat }}</a>
|
|
|
|
@ -87,7 +87,6 @@
|
|
|
|
|
{% endfor %}
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% if book.file %}
|
|
|
|
|
<button id="myBtn" style= "width: 180px; font-size: 10pt;"><a> Download this {{ book.fileformat }}</a></button>
|
|
|
|
|
<div id="myModal" class="modal">
|
|
|
|
@ -95,7 +94,8 @@
|
|
|
|
|
<span class="close">×</span>
|
|
|
|
|
<h3>A message from the uploading librarian:</h3>
|
|
|
|
|
<span style="font-style: italic;">"{{book.message or '...'}}" </span><br>
|
|
|
|
|
<h4><a href="../uploads/{{ book.file }}"> >>>> Link to file <<<<</h4></a></div>
|
|
|
|
|
<h4><a href="../uploads/{{ book.file }}"> >>>> Link to file <<<<</h4></a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% else %}
|
|
|
|
|
{% endif %}
|
|
|
|
|