{% 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}}
{% raw comment.html %}
{% if show_note %} {% end %} {% if show_comment_edit and _user_id == comment.user_id %} 编辑 {% 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 %}