diff --git a/files/templates/comments.html b/files/templates/comments.html index 4ad4366e0..482687384 100644 --- a/files/templates/comments.html +++ b/files/templates/comments.html @@ -646,6 +646,11 @@ {% endif %} + {% if v.admin_level < PERMS['POST_COMMENT_DISTINGUISH'] and v.mods_hole(c.post.hole) %} + + + {% endif %} + {% if v.admin_level < PERMS['POST_COMMENT_MODERATION'] %} {% if c.parent_post and v.id == c.post.author_id %} @@ -693,7 +698,7 @@ {% endif %} - {% if v.admin_level >= PERMS['POST_COMMENT_DISTINGUISH'] or (c.parent_post and v.mods_hole(c.post.hole)) %} + {% if v.admin_level >= PERMS['POST_COMMENT_DISTINGUISH'] %} {% endif %} diff --git a/files/templates/post_actions_mobile.html b/files/templates/post_actions_mobile.html index 80882afea..a9d38f40e 100644 --- a/files/templates/post_actions_mobile.html +++ b/files/templates/post_actions_mobile.html @@ -35,11 +35,6 @@ {% endif %} -{% if v.mods_hole(p.hole) %} - - -{% endif %} - {% if v.id == p.author_id %} @@ -67,6 +62,15 @@ {% endif %} {% if v.mods_hole(p.hole) %} + {% if v.admin_level < PERMS['POST_COMMENT_DISTINGUISH'] %} + + + + {% endif %} + + + + {% if not p.author.mods_hole(p.hole) %} diff --git a/files/templates/post_admin_actions_mobile.html b/files/templates/post_admin_actions_mobile.html index d76c54425..121dd8fce 100644 --- a/files/templates/post_admin_actions_mobile.html +++ b/files/templates/post_admin_actions_mobile.html @@ -22,7 +22,7 @@ {% endif %} - {% if v.admin_level >= PERMS['POST_COMMENT_DISTINGUISH'] or v.mods_hole(p.hole) %} + {% if v.admin_level >= PERMS['POST_COMMENT_DISTINGUISH'] %}