diff --git a/app/logical/reports/contributors.rb b/app/logical/reports/contributors.rb index 3b2a8c7dc..1a8b69392 100644 --- a/app/logical/reports/contributors.rb +++ b/app/logical/reports/contributors.rb @@ -3,7 +3,7 @@ require 'statistics2' module Reports class Contributors < User def users - ::User.where("users.level >= ? and users.post_upload_count >= 250", ::User::Levels::CONTRIBUTOR).order("created_at desc").limit(50).map {|x| Reports::UserPromotions::User.new(x)} + ::User.where("users.level >= ? and users.post_upload_count >= 250", ::User::Levels::CONTRIBUTOR).order("created_at desc").map {|x| Reports::UserPromotions::User.new(x)} end end end diff --git a/app/views/reports/contributors.html.erb b/app/views/reports/contributors.html.erb index 191e8c644..ca95cb838 100644 --- a/app/views/reports/contributors.html.erb +++ b/app/views/reports/contributors.html.erb @@ -10,9 +10,6 @@ User Level Uploads - score:3+ - quartile score - median score deletion @@ -23,9 +20,6 @@ <%= link_to_user user.user %> <%= user.level_string %> <%= link_to user.post_upload_count, posts_path(:tags => "uploader:#{user.name} order:random", :limit => 200) %> - <%= number_to_percentage user.confidence_interval_for(3), :precision => 0 %> - <%= user.quartile_score %> - <%= user.median_score %> <%= link_to number_to_percentage(user.deletion_confidence_interval, :precision => 0), posts_path(:tags => "uploader:#{user.name} status:deleted", :limit => 200) %> <% end %>