{% if comments %}
{% for comment in comments %}
{% if not comment.parent_id %} {# Only show top-level comments, replies are handled in _comment.html #}
{% with depth=0 %}
{% include 'comments/_comment.html' %}
{% endwith %}
{% endif %}
{% endfor %}
{% else %}
{{ _('No comments yet') }}
{{ _('Start the conversation by adding the first comment.') }}
{{ _('Comments') }} {% if comments %} {{ comments|length }} {% endif %}
{{ _('No comments yet') }}
{{ _('Start the conversation by adding the first comment.') }}