{% if current_user.is_authenticated and current_user.verified and current_user.id == comment['comment'].author.id %}
{% include "post/_reply_notification_toggle.html" %}
{% endif %}
{% if comment['replies'] %}
{% for reply in comment['replies'] %}
{{ render_comment(reply) | safe }}
{% endfor %}
{% endif %}
{% endmacro %}
{% for reply in replies %}
{{ render_comment(reply) | safe }}
{% endfor %}