• ID: <%= post.id %>
  • Uploader: <%= link_to_user(post.uploader) + " ".html_safe + link_to("»".html_safe, posts_path(:tags => "user:#{post.uploader.name}"), :rel => "nofollow") %>
  • Date: <%= link_to time_ago_in_words_tagged(post.created_at), posts_path(:tags => "date:#{post.created_at.to_date}"), :rel => "nofollow" %>
  • <% if post.approver %>
  • Approver: <%= link_to_user(post.approver) %>
  • <% end %>
  • Size: <%= link_to_if post.visible?, number_to_human_size(post.file_size), post.file_url %> <% if post.has_dimensions? %> (<%= post.image_width %>x<%= post.image_height %>) <% end %>
  • Source: <%= post_source_tag(post) %>
  • Rating: <%= post.pretty_rating %>
  • Score: <%= post.score %> <% if CurrentUser.is_voter? %>(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 %><%= link_to "undo vote", post_votes_path(post), :remote => true, :method => :delete, :id => "unvote-link-for-post-#{post.id}", :class => "unvote-post-link" %>)<% end %>
  • Favorites: <%= post.fav_count %> <% if CurrentUser.is_gold? %> <%= link_to "Show »".html_safe, "#", :id => "show-favlist-link" %> <%= link_to "« Hide".html_safe, "#", :id => "hide-favlist-link", :style => "display: none;" %>
    <%= post_favlist(post) %>
    <% end %>
  • Status: <% if post.is_pending? %> Pending <% end %> <% if post.is_deleted? %> Deleted <% end %> <% if post.is_flagged? %> Flagged <% end %> <% if post.is_banned? %> Banned <% end %> <% if !post.is_pending? && !post.is_deleted? && !post.is_banned? %> Active <% end %>