{% extends 'quotes/base.html' %} {% block title %}Quotes for {{ author.name }}{% endblock %} {% block body %}

{{ author.name }}

{% include "quotes/author_notes.html" with author=author %}

All the quotes for {{ author.name }}:

{% for work in author.work_set.all %} {% for quote in work.quote_set.all %} {% include "quotes/display.html" with quote=quote skip_author_notes=True %} {% endfor %} {% endfor %} {% endblock %}