Change Wrestlers for Match <%= @match.bout_number %>
<%= form_for(@match) do |f| %>
<%= f.label "Wrestler 1" %>
<%= f.collection_select :w1, @wrestlers, :id, :name, include_blank: true %>
vs
<%= f.label "Wrestler 2" %>
<%= f.collection_select :w2, @wrestlers, :id, :name, include_blank: true %>
<%= f.submit onclick: "return confirm('Is the name of the winner ' + document.getElementById('match_winner_id').options[document.getElementById('match_winner_id').selectedIndex].text + '?')", :class=>"btn btn-success" %>
<% end %>