{% extends "base.html" %} {% block content %} {{ booksfilter }}

The following books were found:

{% for book in books %}

{{ book.name }}

Authors: {% for author in book.authors.all %} {{ author }}{% if not forloop.last %},{% endif %} {% endfor %}
Genre: {{ book.genre }}
{% endfor %} {% endblock %}