{% extends "base.html" %} {% load cache i18n tagging_tags tagging_related %} {% block title %}{{ object.title }} | {{ block.super }}{% endblock %} {% block content %} {% cache 180 "quote.quote_detail" object.pk %}

{{ object.title }}

{% if object.quote %}
{{ object.quote }}
{% endif %}
{% if object.author %} {% if object.url_source %} {{ object.author }} {% else %} - {{ object.author }} {% if object.circa %}, {{ object.circa }}{% endif %} {% endif %} {% endif %}
{% cache 1800 "quote.quote_detail.tag_list" object.pk %} {% tags_for_object object as tag_list %} {% if tag_list %}
{% trans "Tags" %}:
{% endif %} {% endcache %} {% cache 1800 "quoteme.quote_detail.related_list" object.pk %} {% tagged_get_related object in quoteme.Quote as quote_list with num=3 %} {% if quote_list %} {% endif %} {% endcache %}
{% endcache %} {% include "blog/includes/comments.html" %} {% endblock %}