Championship Bracket After Pool
<% @matches.select{|m|m.bracket_position == "Quarter"}.sort_by{|m| m.bracket_position_number}.each do |match| %>
-
- <%= match.w1_name %>
- <%= match.bout_number %> <%= match.bracketScore %>
- <%= match.w2_name %>
-
<% end %>
<% @matches.select{|m|m.bracket_position == "Semis"}.sort_by{|m| m.bracket_position_number}.each do |match| %>
-
- <%= match.w1_name %>
- <%= match.bout_number %> <%= match.bracketScore %>
- <%= match.w2_name %>
-
<% end %>
<% @matches.select{|m|m.bracket_position == "1/2"}.each do |match| %>
-
- <%= match.w1_name %>
- <%= match.bout_number %> <%= match.bracketScore %>
- <%= match.w2_name %>
-
-
- <%= match.winnerName %>
1st
-
<% end %>
3rd/4th
<% @matches.select{|m|m.bracket_position == "3/4"}.each do |match| %>
-
- <%= match.w1_name %>
- <%= match.bout_number %> <%= match.bracketScore %>
- <%= match.w2_name %>
-
-
- <%= match.winnerName %>
3rd
-
<% end %>
Consolation Bracket After Pool
<% @matches.select{|m|m.bracket_position == "Conso Semis"}.sort_by{|m| m.bracket_position_number}.each do |match| %>
-
- <%= match.w1_name %>
- <%= match.bout_number %> <%= match.bracketScore %>
- <%= match.w2_name %>
-
<% end %>
<% @matches.select{|m|m.bracket_position == "5/6"}.each do |match| %>
-
- <%= match.w1_name %>
- <%= match.bout_number %> <%= match.bracketScore %>
- <%= match.w2_name %>
-
-
- <%= match.winnerName %>
5th
-
<% end %>
7th/8th
<% @matches.select{|m|m.bracket_position == "7/8"}.each do |match| %>
-
- <%= match.w1_name %>
- <%= match.bout_number %> <%= match.bracketScore %>
- <%= match.w2_name %>
-
-
- <%= match.winnerName %>
7th
-
<% end %>