]> gitweb.fperrin.net Git - djsite.git/blob - quotes/templates/quotations/tag.html
Initial migration
[djsite.git] / quotes / templates / quotations / tag.html
1 {% extends 'quotations/base.html' %}
2
3 {% block body %}
4
5
6 <h1>{{ tag.tag }}</h1>
7
8 <p>All the quotes tagged with {{ tag.tag }}:<p>
9
10 {% for quote in tag.quote_set.all %}
11   {% include "quotations/display.html" with quote=quote %}
12 {% endfor %}
13
14
15 {% endblock %}