]> gitweb.fperrin.net Git - djsite.git/blob - quotes/templates/quotes/author.html
Fix tag errors found by the new UT
[djsite.git] / quotes / templates / quotes / author.html
1 {% extends 'quotes/base.html' %}
2
3 {% block title %}Quotes for {{ author.name }}{% endblock %}
4
5 {% block body %}
6
7 <h1>{{ author.name }}</h1>
8
9 {% include "quotes/author_notes.html" with author=author %}
10
11 <p>All the quotes for {{ author.name }}:</p>
12
13 {% for work in author.work_set.all %}
14   {% for quote in work.quote_set.all %}
15     {% include "quotes/display.html" with quote=quote skip_author_notes=True %}
16   {% endfor %}
17 {% endfor %}
18
19 {% endblock %}