diff --git a/files/templates/comments.html b/files/templates/comments.html index 237f90ce3..568fccb0d 100644 --- a/files/templates/comments.html +++ b/files/templates/comments.html @@ -511,22 +511,19 @@ {% if render_replies %}
- {% if request.path.startswith('/notifications') %} - {% if replies|length > 8 %} - {% for reply in replies %} - {% if reply.parent_submission %} - {% set collapse = reply.collapse %} - {% else %} - {% set collapse = not reply.unread and loop.index != replies|length %} - {% endif %} - - {{single_comment(reply, level=level+1, collapse=collapse)}} - {% endfor %} - {% elif level < 9 %} - {% for reply in replies %} - {{single_comment(reply, level=level+1)}} - {% endfor %} - {% endif %} + {% if request.path.startswith('/notifications') and replies|length > 8 %} + {% for reply in replies %} + {% if reply.parent_submission %} + {% set collapse = reply.collapse %} + {% else %} + {% set collapse = not reply.unread and loop.index != replies|length %} + {% endif %} + {{single_comment(reply, level=level+1, collapse=collapse)}} + {% endfor %} + {% elif request.path.startswith('/notifications') or level < 9 %} + {% for reply in replies %} + {{single_comment(reply, level=level+1)}} + {% endfor %} {% elif replies %} More comments