+<div class="clear"></div>\r
+\r
+<div class="comments-container" id="comments-container-{{ post.id }}">\r
+ {% for comment in comments %}\r
+ <a name="{{ comment.id }}"></a>\r
+ <div class="comment{% if not comment.top_scorer %} not_top_scorer{% endif %}" id="comment-{{comment.id}}">\r
+ <div id="post-{{ comment.id }}-score" class="comment-score">{% if comment.score %}{{ comment.score }}{% endif %}</div>\r
+ <div class="comment-text">{{ comment.comment }}</div>\r
+ <div class="comment-info" id="comment-{{comment.id}}-info">\r
+ {% if comment.can_like %}\r
+ <a id="post-{{ comment.id }}-upvote" href="{% url like_comment id=comment.id %}"\r
+ title="{% trans "I like this comment (click again to cancel)" %}" class="ajax-command comment-like{% if comment.likes %} on{% endif %}"\r
+ rel="nofollow"> </a>\r
+ {% endif %}\r
+ {% if comment.can_edit %}\r
+ <a id="comment-{{ comment.id }}-edit" href="{% url node_markdown id=comment.id %}" title="{% trans "Edit comment" %}"\r
+ class="comment-edit" rel="nofollow"> </a>\r
+ {% endif %}\r
+ {% if comment.can_delete %}\r
+ <a id="comment-{{ comment.id }}-delete" href="{% url delete_comment id=comment.id %}" title="{% trans "Delete comment" %}"\r
+ class="ajax-command comment-delete confirm" rel="nofollow"> </a>\r
+ {% endif %}\r
+ {% if comment.can_convert %}\r
+ <a rel="nofollow" id="comment-{{ comment.id }}-convert" href="{% url convert_comment id=comment.id %}" title="{% trans "Convert comment to answer" %}"\r
+ class="ajax-command comment-convert confirm" rel="nofollow"> </a>\r
+ <a rel="nofollow" id="comment-{{ comment.id }}-convert-to-question" href="{% url convert_to_question id=comment.id %}?node_type=comment" title="{% trans "Convert comment to question" %}"\r
+ class="comment-convert-to-question" rel="nofollow"> </a>\r
+ {% endif %}\r
+ \r
+\r
+ <span class="comment-age">({% diff_date comment.added_at %})</span>\r
+ <a class="comment-user userinfo" href="{{comment.user.get_profile_url}}">{{comment.user.decorated_name}}</a>\r
+ {% if show_gravatar %}{% gravatar comment.user 18 %}{% endif %}\r
+ </div>\r
+ </div>\r
+ {% endfor %}\r
+</div>\r
+<div id="comment-tools-{{ post.id }}" class="comment-tools">\r
+ {% ifnotequal showing total %}\r
+ <span class="comments-showing">\r
+ {% blocktrans %}showing {{ showing }} of {{ total }}{% endblocktrans %}\r
+ </span>\r
+ <a href="#" class="show-all-comments-link">{% trans "show all" %}</a>\r
+ {% endifnotequal %}\r
+ {% if can_comment %}\r
+ <a href="#" class="add-comment-link">{% trans "add new comment" %}</a>\r
+ {% endif %}\r
+</div>\r