{# COMMENTS COUNT #} {% include 'comment/comment_counter.html' with count=comments.paginator.count %}
{% for comment in comments.object_list %}
{% if settings.allow_reply %}{% endif %} {# PARENT #}
{% include 'comment/comment_body.html' with comment=comment %}
{#ALLOW_REPLY#} {% if settings.allow_reply %} {# REPLY SECTION #} {% endif %}
{% empty %} {% include 'utils/comment_list_empty.html' %} {% endfor %} {#PAGINATION#} {% if comments.paginator.num_pages != 1 %} {% include 'utils/comment_list_pagination.html' with paginator=comments %} {% endif %}