X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=quotes%2Ftemplates%2Fquotes%2Fauthor.html;h=60dbafa577c45b4cf83ff3ef9354d096b745b5ff;hb=1403f44199bde09f56e466285e00462e88e344fd;hp=1fa09c8731519c99ac39f18a9322940354f7de85;hpb=979f7e231fdda726b78bb00914d4a5e22a1d81b7;p=djsite.git diff --git a/quotes/templates/quotes/author.html b/quotes/templates/quotes/author.html index 1fa09c8..60dbafa 100644 --- a/quotes/templates/quotes/author.html +++ b/quotes/templates/quotes/author.html @@ -1,15 +1,17 @@ {% extends 'quotes/base.html' %} -{% block body %} +{% 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 quote in author.quote_set.all %} - {% include "quotes/display.html" with quote=quote %} + {% include "quotes/display.html" with quote=quote skip_author_notes=True %} {% endfor %} - {% endblock %}