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