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

All Books

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