{% from 'topic/reply/_macro.html' import like,no_replies %} {% import 'base/link.html' as link %} {% from 'base/paginate.html' import footer as p_footer %}
{{ _('Received %(total)s replies',total=replies.total) }}
{% if replies.items %} {% for reply in replies.items %} {% set user = reply.author %} {% set floor = loop.index + 12 * (replies.page - 1) %}
{{ link.user(reply.author)}} {{ reply.created_at | timesince }}
{{ reply.content | safe_clean }}
{{ like(reply) }}
{% endfor %} {{ p_footer(replies,'topic.topic',dict(pk=topic.id))}} {% else %} {{ no_replies() }} {% endif %}
{% include "topic/reply/form.html" %}