<%= ts("Unposted Claims for") %> <%= @collection.title %>

<% # we just briefly list all the unposted claims so a mod can clean them up if there are a ton of old ones %> <% if @claims.empty? %>

<%= ts("No claims to review!") %>

<% else %> <%= will_paginate @claims %> <% # this used to be a listbox, but if we ever decide to display posted claims as well we should model it after challenge_assignments/_maintainer_index instead %>
    <% @claims.each do |claim| %> <%= render "challenge_claims/unposted_claim_blurb", :claim => claim %> <% end %>
<%= will_paginate @claims %> <% end %>