<%= resize_image_links(post, CurrentUser.user) %>
- <%= link_to "Favorite", favorite_path(post), :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", "#" %>
- <%= 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", post_moderation_approve_path(:post_id => post.id), :remote => true, :method => :put, :id => "approve" %>
- <%= link_to "Disapprove", post_moderation_disapprove_path(:post_id => post.id), :remote => true, :method => :put, :id => "disapprove" %>
<% end %>
<% if CurrentUser.is_moderator? %>
- <%= link_to "Undelete", post_moderation_undelete_path(:post_id => post.id), :remote => true, :method => :post, :id => "undelete" %>
- <%= link_to "Delete", post_moderation_delete_path(:post_id => post.id), :remote => true, :method => :post, :id => "delete" %>
<% end %>
- <%= link_to "Pool", "#", :id => "pool" %>