diff --git a/app/assets/stylesheets/specific/posts.css.scss b/app/assets/stylesheets/specific/posts.css.scss index ef9c7c7ed..ab3194023 100644 --- a/app/assets/stylesheets/specific/posts.css.scss +++ b/app/assets/stylesheets/specific/posts.css.scss @@ -494,7 +494,9 @@ div#c-explore-posts { margin-left: 0; } } +} +div#c-explore-posts, div#c-post-appeals, div#c-post-flags, div#c-pools { #blacklist-box { margin-bottom: 1em; } diff --git a/app/views/explore/posts/popular.html.erb b/app/views/explore/posts/popular.html.erb index 7849fce13..c8d24bff0 100644 --- a/app/views/explore/posts/popular.html.erb +++ b/app/views/explore/posts/popular.html.erb @@ -4,7 +4,7 @@ <%= @post_set.presenter.nav_links(self) %> - <%= render "blacklists" %> + <%= render "posts/partials/common/inline_blacklist" %> <%= @post_set.presenter.post_previews_html(self) %> diff --git a/app/views/pools/show.html.erb b/app/views/pools/show.html.erb index 8db7850fa..53557eeed 100644 --- a/app/views/pools/show.html.erb +++ b/app/views/pools/show.html.erb @@ -12,6 +12,8 @@ <%= format_text(@pool.description) %> + <%= render "posts/partials/common/inline_blacklist" %> +
<%= @post_set.presenter.post_previews_html(self) %> diff --git a/app/views/post_appeals/index.html.erb b/app/views/post_appeals/index.html.erb index 61fa060c2..6d8504b8d 100644 --- a/app/views/post_appeals/index.html.erb +++ b/app/views/post_appeals/index.html.erb @@ -2,6 +2,7 @@

Appeals

<%= render "search" %> + <%= render "posts/partials/common/inline_blacklist" %> diff --git a/app/views/post_flags/index.html.erb b/app/views/post_flags/index.html.erb index 6eb6b62ba..ae8f8e196 100644 --- a/app/views/post_flags/index.html.erb +++ b/app/views/post_flags/index.html.erb @@ -2,6 +2,7 @@

Flags

<%= render "search" %> + <%= render "posts/partials/common/inline_blacklist" %>
diff --git a/app/views/explore/posts/_blacklists.html.erb b/app/views/posts/partials/common/_inline_blacklist.html.erb similarity index 100% rename from app/views/explore/posts/_blacklists.html.erb rename to app/views/posts/partials/common/_inline_blacklist.html.erb