bgneal@310: {% load url from future %} gremmie@1: {% load avatar_tags %} bgneal@14: <div class="comment" id="c{{ comment.id }}"> bgneal@154: <div class="comment-list">{{ forloop.counter }}.</div> gremmie@1: <div class="comment-avatar"> bgneal@310: <a href="{% url 'bio-view_profile' username=comment.user.username%}">{% avatar comment.user %}</a> gremmie@1: </div> gremmie@1: {% if comment.is_removed %} bgneal@14: <div class="comment-text-removed"><p><em>This comment has been removed.</em></p></div> gremmie@1: {% else %} gremmie@1: <div class="comment-text">{{ comment.html|safe }}</div> gremmie@1: {% endif %} gremmie@1: <div class="comment-details"> bgneal@310: <a href="{% url 'bio-view_profile' username=comment.user.username%}" gremmie@1: title="View profile for {{ comment.user.username }}">{{ comment.user.username }}</a> | gremmie@1: {{ comment.creation_date|date:"d-M-Y H:i:s" }} gremmie@1: {% if not comment.is_removed %} gremmie@1: | <a href="#" class="comment-flag" id="fc-{{ comment.id }}" gremmie@1: title="Flag this comment as spam, abuse, or a violation of site rules."> bgneal@312: <img src="{{ STATIC_URL }}icons/flag_red.png" alt="Flag" /></a> gremmie@1: {% endif %} gremmie@1: </div> gremmie@1: </div>