{% for i in range(replies.comments | length) %}
{{ replies.comments[i]['username'] }}
{{ replies.comments[i]['describe'] }}
{{ replies.comments[i]['content'] | safe }}
评论数:
{{ replies.comments[i]['sub_num'] }}
点赞数:
{{ replies.comments[i]['like_num'] }}
{% if account.isLogin %}
{{ '取消点赞' if replies.comments[i]['upvoted'] else '点赞' }}
{% endif %} {% if replies.comments[i]['sub_num'] > 0 %}
查看评论
{% endif %}
{% endfor %}
{% if replies.isLastFlag and replies.page == 1 %}
没有更多了
{% else %}
当前为第 {{ replies.page }} 页
{% if replies.page > 1 %}
上一页
{% endif %} {% if not replies.isLastFlag %}
下一页
{% endif %} {% endif %}