Browse Our Collection
{% for book in results %}
{% endfor %}
{{ book.title }}
ISBN: {{ book.isbn }}
Author: {% for author in book.authors %} {{ author.author_name }}{% if not loop.last %}, {% endif %} {% endfor %}
Avg. Rating: {{ book.average_rating }} / 5
{% if page > 1 %}
« Previous
{% endif %}
Page {{ page }} of {{ total_pages }}
{% if page < total_pages %}
Next »
{% endif %}