{% include 'header.html' %}
Author Search Results
Books by {{author}}:
{% if books|length == 0: %}
(None)
{% else %}
{% for book in books: %}
{{book['isbn']}}:
{{book['author']}}:
{{book['title']}}
{% endfor %}
{% endif %}
Click here to do another
author search.
{% include 'footer.html' %}