diff --git a/app/views/posts/partials/show/_notices.html.erb b/app/views/posts/partials/show/_notices.html.erb
index f5f7f9111..db8e18b5e 100644
--- a/app/views/posts/partials/show/_notices.html.erb
+++ b/app/views/posts/partials/show/_notices.html.erb
@@ -23,9 +23,13 @@
<% end %>
-<% if post.is_pending? %>
+<% if post.is_pending? || post.is_flagged? %>
- This post is pending approval (<%= link_to "learn more", wiki_pages_path(:title => "about:mod_queue") %>)
+ <% if post.is_pending? %>
+ This post is pending approval (<%= link_to "learn more", wiki_pages_path(:title => "about:mod_queue") %>)
+ <% else %>
+ This post was flagged and is pending approval (<%= link_to "learn more", wiki_pages_path(:title => "about:mod_queue") %>)
+ <% end %>
<% if CurrentUser.can_approve_posts? && !post.disapproved_by?(CurrentUser.user) %>
diff --git a/app/views/posts/show.html.erb b/app/views/posts/show.html.erb
index 627989c77..6ad7f8877 100644
--- a/app/views/posts/show.html.erb
+++ b/app/views/posts/show.html.erb
@@ -118,11 +118,11 @@
-
+
<%= render "post_flags/new" %>
-
+
<%= render "post_appeals/new" %>