<%= ts("Co-Creator Requests") %>

<%= will_paginate @creatorships %> <% if @creatorships.blank? %>

<%= ts("No co-creator requests found.") %>

<% else %> <%= form_tag user_creatorships_path(@user, page: params[:page]), method: :put do %>
<%= ts("Mass Edit Options") %>
<%= ts("List of Co-Creator Requests") %> <%= collection_check_boxes "", :selected, @creatorships, :id, :id do |builder| %> <% creatorship = builder.object %> <% next unless (creation = creatorship.creation) %> <% end %>
<%= ts("Creation") %> <%= ts("Type") %> <%= ts("Invited Pseud") %> <%= ts("Date") %> <%= ts("Selected?") %>
<%= link_to title_for_creation(creation), creation %> <%= creatorship.creation_type %> <%= creatorship.pseud.name %> <%= set_format_for_date(creatorship.created_at) %> <%= builder.check_box %>
<%= ts("Mass Edit Options") %>
<% end %> <% end %> <%= will_paginate @creatorships %>