{% extends 'user/base.html' %} {% from 'user/_macro.html' import not_allowed %} {% block mmm -%} {% set orderby = request.args.get('orderby') %} {% set username = user.username %} {% set setting = user.setting %}
{{_("Sort:")}}
{% if replies_is_allowed %} {{ itemlist(replies,user) }} {% else %} {{ not_allowed() }} {% endif %}
{%- endblock mmm %} {% macro itemlist(replies,user) -%} {% for reply in replies.items %}
{{_('replied %(title)s created by %(author)s',title=link.topic(reply.topic),author = link.user(reply.author))}}

{{ reply.content | safe_clean }}

{{_('replied time:')}}{{ reply.created_at | timesince }}
{% else %}
{{_('No Reply')}}
{% endfor %} {{ p_footer(replies,'user.reply',dict(username=user.username))}} {%- endmacro %}