1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-06 14:36:59 +00:00

Calculate matchups for pools. This breaks generating matches.

This commit is contained in:
2015-03-12 15:03:38 -04:00
parent d68cebc6e4
commit dc9639cf1c
5 changed files with 73 additions and 21 deletions

View File

@@ -15,12 +15,12 @@
</thead>
<tbody>
<% @matches.each do |m| %>
<% @matches.each.map do |m| %>
<tr>
<td>Round <%= m.round %></td>
<td>Bout <%= m.boutNumber %></td>
<td></td>
<td><%= m.weight_max %> lbs</td>
<td><%= m.w1_name %> vs. <%= m.w2_name %></td>
<td><%= m.w_name(m.w1) %> vs. <%= m.w_name(m.w2) %></td>
</tr>
<% end %>
</tbody>