diff --git a/app/views/posts/partials/show/_notices.html.erb b/app/views/posts/partials/show/_notices.html.erb index 800ce596f..9067ac628 100644 --- a/app/views/posts/partials/show/_notices.html.erb +++ b/app/views/posts/partials/show/_notices.html.erb @@ -1,5 +1,5 @@ <% if post.is_flagged? && !post.is_deleted? && post.flags.any? %> -
+

This post was flagged for deletion:

<%= post_flag_reasons(post) %> @@ -7,7 +7,7 @@ <% end %> <% if post.is_deleted? && post.flags.empty? %> -
+
<% if post.is_banned? %> This post was deleted because it was requested by the artist <% else %> @@ -17,7 +17,7 @@ <% end %> <% if post.is_deleted? && post.flags.any? %> -
+

This post was deleted for the following reasons:

<%= post_flag_reasons(post) %> @@ -25,7 +25,7 @@ <% end %> <% if post.is_pending? %> -
+
This post is pending approval (<%= link_to "learn more", wiki_pages_path(:title => "help:post_moderation") %>) <% if CurrentUser.is_janitor? && !post.disapproved_by?(CurrentUser.user) %> @@ -40,26 +40,26 @@ <% end %> <% if (post.is_flagged? || post.is_deleted?) && post.appeals.any? %> -
+

This post was appealed:

<%= post_appeal_reasons(post) %>
<% end %> <% if post.parent_id %> -
+
This post belongs to a <%= link_to "parent", post_path(post.parent_id) %> (<%= link_to "learn more", wiki_pages_path(:title => "help:post_relationships") %>)
<% end %> <% if post.has_children? %> -
+
This post has <%= link_to "children", posts_path(:tags => "parent:#{post.id}") %> (<%= link_to "learn more", wiki_pages_path(:title => "help:post_relationships") %>)
<% end %> <% if post.has_large? && CurrentUser.default_image_size == "large" %> -
+
Resized to <%= number_to_percentage post.resize_percentage, :precision => 0 %> of original (<%= link_to "view original", post.file_url, :id => "image-resize-link" %>)
<% end %>