{{ _('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 }}
{{ reply.content | safe_clean }}
{% if reply in current_user.likes and g.user.is_authenticated %} {% else %} {% endif %}
{% 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') }}
{{ form.hidden_tag() }} {{ form.content(class='form-control',rows=4)}}
{% else %}
{{_('You need')}} {{ _('Login')}} {{_('before you can reply.')}}
{% endif %}