tellicoViewer/templates/book.html

9 lines
285 B
HTML
Raw Normal View History

2015-08-08 19:31:48 -04:00
<!doctype html>
<title>{{book["title"]}}</title>
{% if book["cover"] is not equalto "" %}
<p> <img src="{{ url_for('static', filename="library_files/" + book["cover"]) }}"> </p>
2015-08-08 19:31:48 -04:00
{% endif %}
{% for datum in (book|dictsort) %}
<p> {{names[datum[0]]}}: {{ datum[1] }} </p>
2015-08-08 19:31:48 -04:00
{% endfor %}