Championship Bracket

<% @round_matches = @matches.select{|m|m.bracket_position == "Bracket" and m.round == 1} %> <%= render 'bracket_round' %> <% @round_matches = @matches.select{|m|m.bracket_position == "Quarter"} %> <%= render 'bracket_round' %> <% @round_matches = @matches.select{|m|m.bracket_position == "Semis"} %> <%= render 'bracket_round' %> <% @final_match = @matches.select{|m|m.bracket_position == "1/2"} %> <% @winner_place = "1st" %> <%= render 'bracket_final' %>

Consolation Bracket

<% @round_matches = @matches.select{|m|m.bracket_position == "Conso" and m.round == 2} %> <%= render 'bracket_round' %> <% @round_matches = @matches.select{|m|m.bracket_position == "Conso" and m.round == 3} %> <%= render 'bracket_round' %> <% @round_matches = @matches.select{|m|m.bracket_position == "Conso Quarter"} %> <%= render 'bracket_round' %> <% @round_matches = @matches.select{|m|m.bracket_position == "Conso Semis"} %> <%= render 'bracket_round' %> <% @final_match = @matches.select{|m|m.bracket_position == "3/4"} %> <% @winner_place = "3rd" %> <%= render 'bracket_final' %>

5/6 place match

<% @final_match = @matches.select{|m|m.bracket_position == "5/6"} %> <% @winner_place = "5th" %> <%= render 'bracket_final' %>
<% if @tournament.number_of_placers >= 8 %>

7/8 place match

<% @final_match = @matches.select{|m|m.bracket_position == "7/8"} %> <% @winner_place = "7th" %> <%= render 'bracket_final' %>
<% end %>