{% load com %}
{% load i18n %}
<div class="pagebreakhere">
{% for comment in comments %} <!-- TODO check DATABASE QUERY IMPACT (select for each user ? -->
<table>
<tr>
<td style="vertical-align: top;">
{% if comment.is_reply %}
({{ comment.num }})
{% else %}
<b>[{{ comment.num }}]</b>
{% endif %}
</td>
<td>
{{ comment.title }}
<br />
{% blocktrans with comment.get_name as name and comment.created|local_date:tz as date %}by {{ name }} on {{ date }}{% endblocktrans %}
<br>
{{ comment.content }}
</td>
</tr>
</table>
<hr>
{% endfor %}
</div>