<%= @bracket.name %>
Make your prediction for the tournament by clicking on the teams you think will win
<%= form_tag(tournament_bracket_path(@tournament, @bracket), method: 'put') do %>
<% for i in 1..@matches.length %>
<%= hidden_field_tag('match-'+@matches[i].id.to_s+'-pred', value = nil) %>
<% end %>
<%= submit_tag("Sumit Prediction", disabled: true, id: "bracket-submit") %>
<% end %>
<%= link_to 'Back', tournaments_path %>