%= link_to "Back to #{@tournament.name}", "/tournaments/#{@tournament.id}" %>
Upcoming Matches
<% @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 %>
<% end %>