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