{% if request.user.is_authenticated and comment.user == request.user and settings.allow_edit %}
{% include 'forms/comment_form_edit.html' with comment=comment settings=settings %}
{% endif %}
{#COMMENT REACTION#}
{% if settings.allow_reaction %}
{% endif %}
{#COMMENT REPLY#}
{% if settings.allow_reply and comment.is_parent %}
{% with count_children=comment.children.filter_accepted.count %}
{% endwith %}
{% endif %}