{% extends 'quotes/base.html' %} {% block title %}Quotes about "{{ tag.tag }}"{% endblock %} {% block body %}

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

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