{% from 'topic/reply/_macro.html' import like,no_replies %}
{{ _('Received %(total)s replies',total=replies.total) }}
{% if replies.items %} {% set num = 0 %} {% for reply in replies.items %} {% set num = num + 1 %} {% set user = reply.author %}
{{ link.user(reply.author.username)}} {{ reply.created_at | timesince }}
{{ reply.content | safe_clean }}
{{ like(reply) }}
{% endfor %} {{ p_footer(replies,'topic.topic',dict(topicId=topic.id))}} {% else %} {{ no_replies() }} {% endif %}
{% include "topic/reply/form.html" %}