Moderation Queue

Deletion Guidelines

As a general rule, you should only approve of posts that you personally like. Posts that are not approved in three days will be automatically deleted. Posts with score -3 or lower are marked red. Posts with score 3 or higher are marked green. Posts with the duplicate tag are marked in yellow. <% if params[:hidden] %> <%= link_to "View pending posts", moderator_post_queue_path(:query => params[:query], :hidden => nil) %>. <% else %> <%= link_to "View hidden posts", moderator_post_queue_path(:query => params[:query], :hidden => true) %>. <% end %>

<%= button_tag "Approve all", :id => "approve-all-button" %><%= button_tag "Hide all", :id => "hide-all-button" %>

<% @posts.each do |post| %>
  • <%= link_to "Approve", moderator_post_approval_path(:post_id => post.id), :remote => true, :method => :post, :class => "approve-link" %> | <%= link_to "Hide", moderator_post_disapproval_path(:post_id => post.id), :remote => true, :method => :post, :class => 'disapprove-link' %>

  • Rating: <%= post.pretty_rating %>
  • Score: <%= post.score %>
  • Size: <%= number_to_human_size(post.file_size) %> <% if post.is_image? %> (<%= post.image_width %>x<%= post.image_height %>) <% end %>
  • Uploader: <%= link_to(post.uploader.name, user_path(post.uploader_id)) %> <%= time_ago_in_words_tagged(post.created_at) %>
  • <% if post.is_flagged? %>
  • Flagged: <%= post_flag_reasons(post) %>
  • <% end %> <% if (post.is_flagged? || post.is_deleted?) && post.appeals.any? %>
  • Appeals: <%= post_appeal_reasons(post) %>
  • <% end %>
  • Hidden: <%= post.disapprovals.count %>
  • Tags: <%= post.tag_string %>
<% end %>
<%= numbered_paginator(@posts) %>
<%= render "posts/partials/common/secondary_links" %> <% content_for(:page_title) do %> Mod Queue - <%= Danbooru.config.app_name %> <% end %>