{% extends 'base.html' %} {% block main %}

All Books

{% with messages = get_flashed_messages() %} {% if messages %}
{% endif %} {% endwith %} {% for book in books %} {% endfor %}
Cover Title Author Filetype Tag
{{ book.title }} {% for author in book.author %}
  • {{ author.author_name }}
  • {% endfor %}
    {{ book.fileformat }} {{ book.tag}}
    {% endblock %}