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

Author: {{ author.first_name}} {{ author.last_name}}

Books

{% for book in author.book_set.all %}

Imprint: {{book.title}}

{% endfor %}
{% endblock %}