{% init comment_source_class = "" %} {% init show_comment_edit = False %} {% init note_user_id = 0 %} {% if len(comments) == 0 %}
{% include common/text/empty_text.html %}
{% end %} {% for comment in comments %}
{{comment.user_id}} {% if comment.pin_level > 0 %} [置顶] {% end %} {{comment.user}}
{{comment.ctime_str}}
{% if comment.html %}
{% if comment.ref_user %} @{{comment.ref_user}} {% end %} {% raw comment.html %}
{% end %} {% if comment.files %}
{% for _img_src in comment.files %} {{_img_src}} {% end %}
{% end %}
{% if show_note %} [来源] {{comment.note_name}} {% end %} {% if show_comment_edit and _user_id == comment.user_id %} 编辑 {% end %} {% if comment.reply_count > 0 %} 查看{{comment.reply_count}}条回复 {% elif _user_id > 0 %} 回复 {% end %}
{% if note_user_id == _user_id %} {% if comment.pin_level > 0 %} 取消置顶 {% else %} 置顶 {% end %} {% end %} {% if _user_id == comment.user_id %} 删除 {% end %}
{% end %} {% if page_max > 1 %} {% include common/pagination.html %} {% end %}