<%= ts("Unposted Claims for") %> <%= @collection.title %>
<% if logged_in? %>
- <%= link_to ts("My Claims"), user_claims_path(current_user) %>
<% end %>
- <%= ts("Sort By") %>
- <%= sort_link ts("Date"), :created_at %>
- <%= sort_link ts("Claimer"), :claimer %>
<% # 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 %>