{% from 'base/paginate.html' import paginate %}
排序:
{% if replies.items %} {% if setting.reply_list == 1 or (setting.reply_list == 2 and g.user.is_authenticated) or (g.user.is_authenticated and g.user.username == g.user_url) %} {% for reply in replies.items %}
回复了 {{ reply.username }} 创建的主题: {{ reply.topic.title}}

{{ reply.content }}

回复日期:{{ reply.publish.strftime('%Y-%m-%d %H:%M') }}
{% endfor %} {% if replies.pages > 1 %} {% endif %} {% else %}
根据用户设置,列表被隐藏
{% endif %} {% else %}
没有回复
{% endif %}