返回
{{ rootReply.comment['username'] }}
{{ rootReply.comment['describe'] }}
点赞数:
{{ rootReply.comment['like_num'] }}
{% if account.isLogin %}
{{ '取消点赞' if rootReply.comment['upvoted'] else '点赞' }}
{% endif %}
{% for i in range(replies.comments | length) %}
{{ replies.comments[i]['username'] }}
{{ replies.comments[i]['describe'] }}
点赞数:
{{ replies.comments[i]['like_num'] }}
{% if account.isLogin %}
{{ '取消点赞' if replies.comments[i]['upvoted'] else '点赞' }}
{% endif %}
{% endfor %}
{% if replies.isLastFlag and replies.page == 1 %}
没有更多了
{% else %} {% if prev_id != '-1' %}
上一页
{% endif %} {% if not replies.isLastFlag %}
下一页
{% endif %} {% endif %}