{{ _('Received %(total)s replies',total=replies.total) }}
{% if replies.items %}
{% set num = 1 %}
{% for reply in replies.items %}
{{ link_base.user(reply.author.username)}}
{{ reply.publish | timesince }}
#{{ num }}
{{ reply.content | safe_clean }}
{% set num = num + 1 %}
{% endfor %}
{{ p_footer(replies,'topic.topic',dict(topicId=topic.uid))}}
{% else %}
{{_('no reply')}}
{% endif %}
{% if g.user.is_authenticated %}
{{ _('Reply this topic') }}
{% else %}
{{_('You need')}} {{ _('Login')}} {{_('before you can reply.')}}
{% endif %}