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