{% if comment.user %} {{ comment.user.username }} {{ comment.user.username }} {% else %} {{ comment.anonymous_user.name }} {{ comment.anonymous_user.name }} {% endif %} {{ comment.created_at|timesince }} ago {% if comment.edited %} (edited) {% endif %}

{{ comment.body }}

{% if user == comment.user or is_admin %} {% endif %}
{% for reply in comment.replies.all %} {% include 'partials/_comment.html' with comment=reply %} {% endfor %}