mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-02 13:15:27 +00:00
9 lines
246 B
Plaintext
9 lines
246 B
Plaintext
<%= link_to "Back to #{@tournament.name}", "/tournaments/#{@tournament.id}" %>
|
|
<br>
|
|
<br>
|
|
<h3>Upcoming Matches</h3>
|
|
<% @bouts.each do |m| %>
|
|
<%= Wrestler.find(m.w1).weight.max %> Lbs <%= Wrestler.find(m.w1).name %> vs. Some Guy
|
|
<br>
|
|
<% end %>
|