{% extends "base.html" %} {% load i18n comments %} {% block header %}{{ block.super }}Blog - Quote List{% endblock %} {% block content %}
{% if object_list %} {% for item in object_list %} {% get_comment_count for item as comment_count %}

{{ item.title }}

{{ item.author }}
{{ comment_count }} comment{{ comment_count|pluralize }}
{% endfor %}
{% else %}
No quote yet.
{% endif %}

{% trans "Blog" %}

{% endblock %}