{% load com %} {% load i18n %}
{% for comment in comments %}
{% if comment.is_reply %} ({{ comment.num }}) {% else %} [{{ comment.num }}] {% endif %} {{ comment.title }}
{% blocktrans with comment.get_name as name and comment.created|local_date:tz as date %}by {{ name }} on {{ date }}{% endblocktrans %}
{{ comment.content }} {% if comment.tags %}
 
tags: {{ comment.tags }} {% endif %}

{% endfor %}