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

{{ author.name }}

{% if author.bio %}
{{ author.bio | author_bio }}
{% endif %} {% for book in books %}
{% include 'snippets/book.html' with book=book size=large description=True %}
{% endfor %}
{% endblock %}