X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=quotes%2Ftemplates%2Fquotes%2Ftag.html;h=a308d451f8f348d0338917c74879b103e3c1c725;hb=242b0beb0eff7c97205b0bbe3747118b70ff1ee9;hp=266cd168e45c35f75b69a1fca0523c93121b7d7d;hpb=979f7e231fdda726b78bb00914d4a5e22a1d81b7;p=djsite.git diff --git a/quotes/templates/quotes/tag.html b/quotes/templates/quotes/tag.html index 266cd16..a308d45 100644 --- a/quotes/templates/quotes/tag.html +++ b/quotes/templates/quotes/tag.html @@ -1,15 +1,13 @@ {% extends 'quotes/base.html' %} -{% block body %} - +{% block title %}Quotes about "{{ tag.tag }}"{% endblock %} -

{{ tag.tag }}

+{% block body %} -

All the quotes tagged with {{ tag.tag }}:

+

All the quotes tagged with "{{ tag.tag }}":

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