{{ comment.author_name }}
{{ comment.created_at|date:"M j, Y" }}

{{ comment.body }}

{% include "comments/_reactions.html" with comment=comment counts=comment.reaction_counts user_reacted=comment.user_reacted %}
{% for reply in comment.replies.all %}
{{ reply.author_name }}
{{ reply.created_at|date:"M j, Y" }}

{{ reply.body }}

{% endfor %}
{% include "comments/_reply_form.html" with page=page comment=comment %}