• Uploader: <%= link_to_unless(post.uploader.nil?, post.uploader_name, user_path(post.uploader)) %>
  • Date: <%= raw time_ago_in_words_tagged(post.created_at).gsub(/about/, "") %> ago
  • <% if post.approver %>
  • Approver: <%= link_to(post.approver.name, user_path(post.approver_id)) %>
  • <% end %>
  • Size: <%= number_to_human_size(post.file_size) %> <% if post.is_image? %> (<%= post.image_width %>x<%= post.image_height %>) <% end %>
  • Source: <%= post_source_tag(post) %>
  • Rating: <%= post.pretty_rating %>
  • Score: <%= post.score %> <% if CurrentUser.is_privileged? %>(vote <%= link_to "up", post_votes_path(:post_id => post.id, :score => "up"), :remote => true, :method => :post %>/<%= link_to "down", post_votes_path(:post_id => post.id, :score => "down"), :remote => true, :method => :post %>)<% end %>
  • ID: <%= post.id %>
  • Status: <% if post.is_pending? %> Pending <% end %> <% if post.is_deleted? %> Deleted <% end %> <% if post.is_flagged? %> Flagged <% end %> <% if !post.is_pending? && !post.is_deleted? %> Active <% end %>