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

Author: {{ author }}

{{author.date_of_birth}} - {% if author.date_of_death %}{{author.date_of_death}}{% endif %}

Books

{% for book in author.book_set.all %}
{{book}} ({{book.bookinstance_set.all.count}})
{{book.summary}}
{% empty %}

This author has no books.

{% endfor %}
{% endblock %} {% block sidebar %} {{ block.super }} {% if perms.catalog.change_author or perms.catalog.delete_author %}
{% endif %} {% endblock %}