1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Made bracket name shorter

This commit is contained in:
2020-01-24 10:30:36 -05:00
parent c4891f7d7c
commit bae349a2c9

View File

@@ -3,9 +3,9 @@
<ul class="round round-1">
<% @matches.select{|m|m.bracket_position == "Quarter"}.sort_by{|m| m.bracket_position_number}.each do |match| %>
<li>&nbsp;</li>
<li class="game game-top "><%= match.w1_bracket_name %> <span></span></li>
<li class="game game-top "><%= match.w1_bracket_name_round_one %> <span></span></li>
<li class="bout-number"><%= match.bout_number %> <%= match.bracket_score_string %>&nbsp;</li>
<li class="game game-bottom "><%= match.w2_bracket_name %><span></span></li>
<li class="game game-bottom "><%= match.w2_bracket_name_round_one %><span></span></li>
<li></li>
<% end %>