{% load base_filter %}

该代码块共有{{annotation_length}}个注释

{% for self_anno in self_annos%}
{% if self_anno.id in anno_vote_map and anno_vote_map|keyValue:self_anno.id == 1 %}

{% else %}

{% endif %}

{{ self_anno.voteup | add:self_anno.votedown }}

{% if self_anno.id in anno_vote_map and anno_vote_map|keyValue:self_anno.id == -1 %}

{% else %}

{% endif %}
{% if allow_modify %} 修改 {{self_anno.user.nick_name}} {% endif %}
{% for comment in anno_comments %} {% if comment.annotation.pk == self_anno.pk %}
{% if comment.id in comment_vote_map and comment_vote_map|keyValue:comment.id == 1 %}

{% else %}

{% endif %}

{{ comment.voteup | add:comment.votedown}}

{% if comment.id in comment_vote_map and comment_vote_map|keyValue:comment.id == -1 %}

{% else %}

{% endif %}
{{ comment.content }} {{ comment.user.nick_name }}
{% endif %} {% endfor %} {% endfor %} {% for anno in annos%} {% if anno not in self_annos %}
{% if anno.id in anno_vote_map and anno_vote_map|keyValue:anno.id == 1 %}

{% else %}

{% endif %}

{{ anno.voteup | add:anno.votedown }}

{% if anno.id in anno_vote_map and anno_vote_map|keyValue:anno.id == -1 %}

{% else %}

{% endif %}
{{ forloop.counter }}.{{ anno.content }}
{{anno.user.nick_name}} 添加评论
{% for comment in anno_comments %} {% if comment.annotation.pk == anno.pk %}
{% if comment.id in comment_vote_map and comment_vote_map|keyValue:comment.id == 1 %}

{% else %}

{% endif %}

{{ comment.voteup | add:comment.votedown}}

{% if comment.id in comment_vote_map and comment_vote_map|keyValue:comment.id == -1 %}

{% else %}

{% endif %}
{{ comment.content }} {{ comment.user.nick_name }}
{% endif %} {% endfor %} {% endif %} {% endfor %}