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

All Books

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