<%= resize_image_links(post, CurrentUser.user) %>
- <%= link_to "Favorite", favorite_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 "Translate", "#", :id => "translate", :title => "Shortcut is CTRL+N" %>
- <%= link_to "Flag", new_post_flag_path(:post_id => post.id), :id => "flag" %>
- <%= link_to "Appeal", new_post_appeal_path(:post_id => post.id), :id => "appeal" %>
<% if CurrentUser.is_janitor? %>
- <%= link_to "Approve", moderator_post_approval_path(:post_id => post.id), :remote => true, :method => :post, :id => "approve" %>
- <%= link_to "Disapprove", moderator_post_disapproval_path(:post_id => post.id), :remote => true, :method => :post, :id => "disapprove" %>
<% end %>
<% if CurrentUser.is_moderator? %>
- <%= link_to "Undelete", undelete_moderator_post_post_path(:post_id => post.id), :remote => true, :method => :post, :id => "undelete" %>
- <%= link_to "Delete", delete_moderator_post_post_path(:post_id => post.id), :remote => true, :method => :post, :id => "delete" %>
<% end %>
- <%= link_to "Pool", "#", :id => "pool" %>