{% include 'navbar.html' %}
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
Get Book Recommendations
{% if recommendations %}
Recommended Books:
{% for book in recommendations %}
{{ book.title }}
Authors: {{ book.authors | join(', ') }}
View Details
{% endfor %}
{% endif %}
{% include 'footer.html' %}