{% import "bootstrap/utils.html" as utils %} {% extends "base.html" %} {% block title %}Books{% endblock %} {% block body %}

{{ utils.flashed_messages() }}

Books

{% if books %}
{% for book in books %} {% endfor %}
Title Author Publisher ISBN Year Edit Delete
{{ book.title }} {{ book.author.name }} {{ book.publisher.name }} {{ book.isbn }} {{ book.year }} Edit Delete
{% else %}

No books have been added.


{% endif %} Add Book
{% endblock %}