X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=quotes%2Ftemplates%2Fquotes%2Fauthor.html;fp=quotes%2Ftemplates%2Fquotes%2Fauthor.html;h=1fa09c8731519c99ac39f18a9322940354f7de85;hb=979f7e231fdda726b78bb00914d4a5e22a1d81b7;hp=0000000000000000000000000000000000000000;hpb=c7ddb3d6a9f2ca0f2fbdc3b8a72c8110549ed66e;p=djsite.git diff --git a/quotes/templates/quotes/author.html b/quotes/templates/quotes/author.html new file mode 100644 index 0000000..1fa09c8 --- /dev/null +++ b/quotes/templates/quotes/author.html @@ -0,0 +1,15 @@ +{% extends 'quotes/base.html' %} + +{% block body %} + + +

{{ author.name }}

+ +

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

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