<%= ts("Delete Sign-up") %>

<%= form_for(@challenge_signup, :url => collection_signup_path(@collection, @challenge_signup), :html => {:method => :delete, :class => "simple destroy"}) do |f| %>

<%= ts("Are you sure you want to delete the sign-up for %{person}?", :person => @challenge_signup.pseud.byline).html_safe %> <% if @collection.potential_matches.count == 0 %> <%= ts("All prompts in this sign-up will be lost.") %> <% else %> <%= ts("Potential matches will need to be regenerated afterwards.") %> <% end %>

<%= f.submit ts("Yes, Delete Sign-up") %>

<% end %>