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

Use match id instead of bout number when looking stuff up on bracket view.

This commit is contained in:
2021-12-22 13:13:44 +00:00
parent 6db1dacbb6
commit f0e8c99b9f
4 changed files with 26 additions and 4 deletions

View File

@@ -22,7 +22,7 @@
<% @round = 1 %>
<% until @matches.select{|m| m.round == @round}.blank? %>
<% if @round <= @pools %>
<td><%= w.bout_by_round(@round) %><br><%= w.result_by_bout(w.bout_by_round(@round)) %></td>
<td><%= w.bout_by_round(@round) %><br><%= w.result_by_id(w.match_id_by_round(@round)) %></td>
<% end %>
<% @round = @round + 1 %>
<% end %>