{% extends 'layout.html' %} {% load fr_display %} {% block content %}

{{ author.display_name }}

{% if author.bio %}

{{ author.bio }}

{% endif %}

Books by {{ author.display_name }}

{% for book in books %}
{% include 'snippets/book_cover.html' with book=book %} {% include 'snippets/shelve_button.html' with book=book %}
{% endfor %}
{% endblock %}