diff --git a/files/templates/comments.html b/files/templates/comments.html index e229ad0e7..98301f86d 100644 --- a/files/templates/comments.html +++ b/files/templates/comments.html @@ -70,7 +70,7 @@ {% endif %} {% endif %} -{% if c.is_blocking or (c.is_banned or c.deleted_utc) and not (v and v.admin_level > 1) and not (v and v.id==c.author_id) %} +{% if c.is_blocking and not c.ghost or (c.is_banned or c.deleted_utc) and not (v and v.admin_level > 1) and not (v and v.id==c.author_id) %}
@@ -191,7 +191,7 @@ {% if c.distinguish_level and not c.ghost %}{% endif %} {% if c.is_op %}{% endif %} {% if c.is_bot %}{% endif %} - {% if c.is_blocking %}{% endif %} + {% if c.is_blocking and not c.ghost %}{% endif %} {% if c.is_blocked %}{% endif %} {% if c.ghost %} diff --git a/files/templates/submission_listing.html b/files/templates/submission_listing.html index e22cddcb9..1e12be860 100644 --- a/files/templates/submission_listing.html +++ b/files/templates/submission_listing.html @@ -191,7 +191,7 @@ {% if p.is_pinned and request.path.startswith('/@') %}{% endif %} {% if p.over_18 %}+18{% endif %} {% if p.is_bot %} {% endif %} - {% if p.is_blocking %}{% endif %} + {% if p.is_blocking and not p.ghost %}{% endif %} {% if p.is_blocked %}{% endif %} {% if p.private %}Draft{% endif %} {% if p.active_flags(v) %}{{p.active_flags(v)}} Report{{ help.plural(p.active_flags(v)) }}{% endif %}