{% extends "base.html" %} {% load cache i18n %} {% block title %}{% trans "Quotes" %} | {{ block.super }}{% endblock %} {% block content %}

{% trans "Quotes" %}

{% cache 180 "quote.quote_list" %} {% for object in object_list %} {% include "quotes/includes/quote.html" %} {% endfor %} {% endcache %} {% endblock %}