{% for comment in comments %}
<div class="comment">
<p class="info">Comment {{ forloop.counter }} by {{ comment.name }} {{ comment.created }}</p>
{{comment.body|linebreaks}}
</div>
{% empty %}
There are not comment yet.
{% endfor %}