diff --git a/app/templates/post/post.html b/app/templates/post/post.html index a6137b1b..cc0094aa 100644 --- a/app/templates/post/post.html +++ b/app/templates/post/post.html @@ -80,7 +80,7 @@ aria-level="{{ comment['comment'].depth + 1 }}" role="treeitem" aria-expanded="true" tabindex="0">
{% if not comment['comment'].author.indexable -%}{% endif -%}
- {% with collapsed = comment['comment'].score < reply_collapse_threshold -%} + {% with collapsed = (comment['comment'].score < reply_collapse_threshold or comment['comment'].deleted) -%} {{ render_username(comment['comment'].author) }} {% endwith -%} {% if comment['comment'].author.id == post.author.id -%}[OP] {% endif -%} @@ -112,7 +112,7 @@ {% endwith -%}
- {% if comment['comment'].score <= reply_collapse_threshold -%} + {% if comment['comment'].score <= reply_collapse_threshold or comment['comment'].deleted -%} {% else -%} @@ -140,7 +140,7 @@ {% endif -%} {% endif -%}
- {% if comment['comment'].score <= reply_collapse_threshold -%} + {% if comment['comment'].score <= reply_collapse_threshold or comment['comment'].deleted -%}