diff --git a/app/views/posts/partials/show/_options.html.erb b/app/views/posts/partials/show/_options.html.erb
index d21c6f6fb..d73f845bb 100644
--- a/app/views/posts/partials/show/_options.html.erb
+++ b/app/views/posts/partials/show/_options.html.erb
@@ -1,36 +1,35 @@
- <% if CurrentUser.is_member? %>
- - <%= link_to "Resize to window", "#", :id => "image-resize-to-window-link" %>
- - <%= link_to "Favorite", favorites_path(:post_id => post.id), :remote => true, :method => :post, :id => "add-to-favorites" %>
- - <%= link_to "Unfavorite", favorite_path(post), :remote => true, :method => :delete, :id => "remove-from-favorites" %>
- - <%= link_to "Add to pool", "#", :id => "pool" %>
- <% if post.is_note_locked? %>
- - Note locked
- <% else %>
- - <%= link_to "Add note", "#", :id => "translate", :title => "Shortcut is CTRL+N" %>
+ - <%= link_to "Resize to window", "#", :id => "image-resize-to-window-link" %>
+ - <%= link_to "Favorite", favorites_path(:post_id => post.id), :remote => true, :method => :post, :id => "add-to-favorites" %>
+ - <%= link_to "Unfavorite", favorite_path(post), :remote => true, :method => :delete, :id => "remove-from-favorites" %>
+ - <%= link_to "Add to pool", "#", :id => "pool" %>
+ <% if post.is_note_locked? %>
+ - Note locked
+ <% else %>
+ - <%= link_to "Add note", "#", :id => "translate", :title => "Shortcut is CTRL+N" %>
+ <% end %>
+ - <%= link_to "Find similar", "http://danbooru.iqdb.org/db-search.php?url=http://#{Danbooru.config.hostname}#{post.preview_file_url}" %>
+
+ <% unless post.is_status_locked? %>
+ <% if !post.is_deleted? && !post.is_pending? %>
+ - <%= link_to "Flag", new_post_flag_path(:post_id => post.id), :id => "flag" %>
<% end %>
- - <%= link_to "Find similar", "http://danbooru.iqdb.org/db-search.php?url=http://#{Danbooru.config.hostname}#{post.preview_file_url}" %>
- <% unless post.is_status_locked? %>
- <% if !post.is_deleted? && !post.is_pending? %>
- - <%= link_to "Flag", new_post_flag_path(:post_id => post.id), :id => "flag" %>
+ <% if post.is_flagged? || post.is_deleted? %>
+ - <%= link_to "Appeal", new_post_appeal_path(:post_id => post.id), :id => "appeal" %>
+ <% end %>
+
+ <% if CurrentUser.is_janitor? %>
+ <% if post.is_deleted? %>
+ - <%= link_to "Undelete", undelete_moderator_post_post_path(:post_id => post.id), :remote => true, :method => :post, :id => "undelete" %>
+ <% else %>
+ - <%= link_to "Delete", confirm_delete_moderator_post_post_path(:post_id => post.id) %>
<% end %>
- <% if post.is_flagged? || post.is_deleted? %>
- - <%= link_to "Appeal", new_post_appeal_path(:post_id => post.id), :id => "appeal" %>
- <% end %>
-
- <% if CurrentUser.is_janitor? %>
- <% if post.is_flagged? || post.is_pending? %>
- - <%= link_to "Approve", moderator_post_approval_path(:post_id => post.id), :remote => true, :method => :post, :id => "approve" %>
- <% else %>
- - <%= link_to "Hide from queue", moderator_post_disapproval_path(:post_id => post.id), :remote => true, :method => :post, :id => "disapprove" %>
- <% end %>
- <% if post.is_deleted? %>
- - <%= link_to "Undelete", undelete_moderator_post_post_path(:post_id => post.id), :remote => true, :method => :post, :id => "undelete" %>
- <% else %>
- - <%= link_to "Delete", confirm_delete_moderator_post_post_path(:post_id => post.id) %>
- <% end %>
+ <% if post.is_flagged? || post.is_pending? %>
+ - <%= link_to "Approve", moderator_post_approval_path(:post_id => post.id), :remote => true, :method => :post, :id => "approve" %>
+ <% else %>
+ - <%= link_to "Hide from queue", moderator_post_disapproval_path(:post_id => post.id), :remote => true, :method => :post, :id => "disapprove" %>
<% end %>
<% end %>
<% end %>
diff --git a/app/views/posts/show.html.erb b/app/views/posts/show.html.erb
index dec337036..ca63942fe 100644
--- a/app/views/posts/show.html.erb
+++ b/app/views/posts/show.html.erb
@@ -14,10 +14,12 @@
<%= render "posts/partials/show/information", :post => @post %>
-
- Options
- <%= render "posts/partials/show/options", :post => @post %>
-
+ <% if CurrentUser.is_member? %>
+
+ Options
+ <%= render "posts/partials/show/options", :post => @post %>
+
+ <% end %>