<%= resize_image_links(post, CurrentUser.user) %>
  • <%= link_to "Favorite", "#", :id => "add-to-favorites" %>
  • <%= link_to "Unfavorite", "#", :id => "remove-from-favorites" %>
  • <%= link_to "Translate", "#" %>
  • <% if !post.is_flagged? %>
  • <%= link_to "Unapprove", new_unapproval_path(:post_id => post.id), :id => "unapprove" %>
  • <% end %> <% if CurrentUser.is_janitor? %> <% if post.is_pending? || post.is_flagged? %>
  • <%= link_to "Approve", "#", :id => "approve" %>
  • <%= link_to "Disapprove", "#", :id => "disapprove" %>
  • <% end %> <% end %> <% if CurrentUser.is_moderator? %> <% if post.is_removed? %>
  • <%= link_to "Undelete", "#" %>
  • <% else %>
  • <%= link_to "Delete", "#" %>
  • <% end %> <% end %>
  • <%= link_to "Pool", "#" %>