tellicoViewer/templates/book.html

11 lines
346 B
HTML

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