{% extends 'django_commentseasy/base.html' %} {% load django_comments_easy %} {% load humanize %} {% block comment_content %} {% for comment in comments %}

{% ifequal comment.author None %} {% with "Anonymous" as anon %} {{ anon }} {% endwith %} {% endifequal %} {{ comment.author.username }} {{ comment.timestamp|naturaltime }} in reply to {% ifequal comment.parent_comment.author.username None %} {% with "Anonymous" as anon %} {{ anon }} {% endwith %} {% endifequal %} {{ comment.parent_comment.author.username}}

{{ comment.comment }}

Likes {% get_comment_likes comment.id %} {% render_like_button comment.id %} {% render_remove_button comment.id %} {% render_reply_list comment.id %}
{% render_reply_form comment.id %}
{% endfor %} {% endblock %}