mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-03 13:30:02 +00:00
9 lines
367 B
Plaintext
9 lines
367 B
Plaintext
<%= link_to "Back to #{@tournament.name}", "/tournaments/#{@tournament.id}" %>
|
|
<br>
|
|
<br>
|
|
<h3>Upcoming Matches</h3>
|
|
<% @matches.each do |m| %>
|
|
Round <%= m.round %> Bout <%= m.boutNumber %> <%= Wrestler.find(m.r_id).weight.max %> Lbs <%= Wrestler.find(m.r_id).name %> vs. <%= Wrestler.find(m.g_id).weight.max %> Lbs <%= Wrestler.find(m.g_id).name %>
|
|
<br>
|
|
<% end %>
|