diff --git a/app/views/artist_commentaries/index.html.erb b/app/views/artist_commentaries/index.html.erb
index fbecb4f14..33a6ff4a0 100644
--- a/app/views/artist_commentaries/index.html.erb
+++ b/app/views/artist_commentaries/index.html.erb
@@ -6,7 +6,7 @@
<%= table_for @commentaries, width: "100%" do |t| %>
<% t.column "Post", width: "1%" do |commentary| %>
- <%= PostPresenter.preview(commentary.post, :tags => "status:any") %>
+ <%= PostPresenter.preview(commentary.post, show_deleted: true) %>
<% end %>
<% t.column "Original" do |commentary| %>
<%= format_commentary_title(commentary.original_title) %>
diff --git a/app/views/artist_commentary_versions/_listing.html.erb b/app/views/artist_commentary_versions/_listing.html.erb
index fd4fb089d..a10e17c59 100644
--- a/app/views/artist_commentary_versions/_listing.html.erb
+++ b/app/views/artist_commentary_versions/_listing.html.erb
@@ -7,7 +7,7 @@
<%= table_for @commentary_versions, {class: "striped", width: "100%"} do |t| %>
<% if listing_type(:post_id) == :standard %>
<% t.column "Post", width: "1%" do |commentary_version| %>
- <%= PostPresenter.preview(commentary_version.post, :tags => "status:any") %>
+ <%= PostPresenter.preview(commentary_version.post, show_deleted: true) %>
<% end %>
<% end %>
<% if listing_type(:post_id) == :standard %>
diff --git a/app/views/favorite_group_orders/edit.html.erb b/app/views/favorite_group_orders/edit.html.erb
index fe54ae3aa..b5517a587 100644
--- a/app/views/favorite_group_orders/edit.html.erb
+++ b/app/views/favorite_group_orders/edit.html.erb
@@ -8,7 +8,7 @@
<% @favorite_group.posts.limit(1_000).each do |post| %>
-
- <%= PostPresenter.preview(post).presence || "Hidden: Post ##{post.id}" %>
+ <%= PostPresenter.preview(post, show_deleted: true).presence || "Hidden: Post ##{post.id}" %>
<% end %>
diff --git a/app/views/iqdb_queries/_matches.html.erb b/app/views/iqdb_queries/_matches.html.erb
index 44bd0b16f..ae85b30a4 100644
--- a/app/views/iqdb_queries/_matches.html.erb
+++ b/app/views/iqdb_queries/_matches.html.erb
@@ -14,13 +14,13 @@
<% @high_similarity_matches.each do |match| %>
- <%= PostPresenter.preview(match["post"], tags: "status:any", similarity: match["score"], size: true) %>
+ <%= PostPresenter.preview(match["post"], show_deleted: true, similarity: match["score"], size: true) %>
<% end %>
<% @low_similarity_matches.each do |match| %>
- <%= PostPresenter.preview(match["post"], tags: "status:any", similarity: match["score"], size: true) %>
+ <%= PostPresenter.preview(match["post"], show_deleted: true, similarity: match["score"], size: true) %>
<% end %>
diff --git a/app/views/moderator/post/posts/confirm_ban.html.erb b/app/views/moderator/post/posts/confirm_ban.html.erb
index 74571da88..b83659511 100644
--- a/app/views/moderator/post/posts/confirm_ban.html.erb
+++ b/app/views/moderator/post/posts/confirm_ban.html.erb
@@ -1,7 +1,7 @@
Ban Post
- <%= PostPresenter.preview(@post, :tags => "status:any") %>
+ <%= PostPresenter.preview(@post, show_deleted: true) %>
<%= form_tag(ban_moderator_post_post_path(@post), :style => "clear: both;", :class => "simple_form") do %>
diff --git a/app/views/moderator/post/posts/confirm_delete.html.erb b/app/views/moderator/post/posts/confirm_delete.html.erb
index 132c77024..c97ab66ec 100644
--- a/app/views/moderator/post/posts/confirm_delete.html.erb
+++ b/app/views/moderator/post/posts/confirm_delete.html.erb
@@ -1,7 +1,7 @@
Delete Post
- <%= PostPresenter.preview(@post, :tags => "status:any") %>
+ <%= PostPresenter.preview(@post, show_deleted: true) %>
<%= form_tag(delete_moderator_post_post_path, :style => "clear: both;", :class => "simple_form") do %>
diff --git a/app/views/moderator/post/posts/confirm_move_favorites.html.erb b/app/views/moderator/post/posts/confirm_move_favorites.html.erb
index a734d3a7b..c3808538f 100644
--- a/app/views/moderator/post/posts/confirm_move_favorites.html.erb
+++ b/app/views/moderator/post/posts/confirm_move_favorites.html.erb
@@ -1,7 +1,7 @@
Move Favorites to Parent
- <%= PostPresenter.preview(@post, :tags => "status:any") %>
+ <%= PostPresenter.preview(@post, show_deleted: true) %>
This will move all the post's favorites to its parent post. Are you sure?
diff --git a/app/views/pool_orders/edit.html.erb b/app/views/pool_orders/edit.html.erb
index c5575a5f4..4f0bb1093 100644
--- a/app/views/pool_orders/edit.html.erb
+++ b/app/views/pool_orders/edit.html.erb
@@ -14,7 +14,7 @@
<% @pool.posts.each do |post| %>
-
- <%= PostPresenter.preview(post).presence || "Hidden: Post ##{post.id}" %>
+ <%= PostPresenter.preview(post, show_deleted: true).presence || "Hidden: Post ##{post.id}" %>
<% end %>
diff --git a/app/views/post_appeals/index.html.erb b/app/views/post_appeals/index.html.erb
index ddca78198..4b59adf8d 100644
--- a/app/views/post_appeals/index.html.erb
+++ b/app/views/post_appeals/index.html.erb
@@ -6,7 +6,7 @@
<%= table_for @post_appeals, width: "100%" do |t| %>
<% t.column "Post", width: "1%" do |post_appeal| %>
- <%= PostPresenter.preview(post_appeal.post, :tags => "status:any") %>
+ <%= PostPresenter.preview(post_appeal.post, show_deleted: true) %>
<% end %>
<% t.column "Reason" do |post_appeal| %>
diff --git a/app/views/post_approvals/index.html.erb b/app/views/post_approvals/index.html.erb
index e10debb94..bf6a9afd7 100644
--- a/app/views/post_approvals/index.html.erb
+++ b/app/views/post_approvals/index.html.erb
@@ -11,7 +11,7 @@
<%= table_for @post_approvals, width: "100%" do |t| %>
<% t.column "Post", width: "1%" do |post_approval| %>
- <%= PostPresenter.preview(post_approval.post, :tags => "status:any") %>
+ <%= PostPresenter.preview(post_approval.post, show_deleted: true) %>
<% end %>
<% t.column "Approver", width: "15%" do |post_approval| %>
<%= link_to_user post_approval.user %>
diff --git a/app/views/post_flags/index.html.erb b/app/views/post_flags/index.html.erb
index 9bb112309..3174867e7 100644
--- a/app/views/post_flags/index.html.erb
+++ b/app/views/post_flags/index.html.erb
@@ -6,7 +6,7 @@
<%= table_for @post_flags, width: "100%" do |t| %>
<% t.column "Post", width: "1%" do |post_flag| %>
- <%= PostPresenter.preview(post_flag.post, :tags => "status:any") %>
+ <%= PostPresenter.preview(post_flag.post, show_deleted: true) %>
<% end %>
<% t.column "Reason" do |post_flag| %>