- {% if render_replies %}
- {% if level <= RENDER_DEPTH_LIMIT - 1 %}
-
- {% set standalone=False %}
+ {% if render_replies %}
+
+ {% if level <= RENDER_DEPTH_LIMIT - 1 %}
+ {% set standalone=false %}
{% for reply in replies %}
{{single_comment(reply, level=level+1)}}
{% endfor %}
+ {% endif %}
+
+ {% if replies and level >= RENDER_DEPTH_LIMIT -%}
+
- {% elif replies and is_notification_page %}
-
- {% set standalone=False %}
- {% for reply in replies %}
- {{single_comment(reply, level=level+1)}}
- {% endfor %}
-
-
- {% elif replies %}
-
- {% endif %}
+ {%- endif %}
{% endif %}