{% extends "base_generic.html" %} {% block content %}

Book List

{% if book_list %}
{% for book in book_list %}
Sample Title

{{ book.title }} ({{book.author}})

{% endfor %}
{% else %}

There are no books.

{% endif %} {% endblock %}