Enter Results: <%= tournament.name %> - Round <%= round[:round_number] %>

<% matchups.each_with_index do |matchup, i| %> <% team_1 = teams.find { |t| t.id == matchup[:team_1_id] } %> <% team_2 = teams.find { |t| t.id == matchup[:team_2_id] } %> <% next if team_1.nil? || team_2.nil? %> <% end %>
Matchup Team 1 Score vs Team 2 Score
<%= i + 1 %> <%= team_1.team_name %> vs <%= team_2.team_name %>

Back to Tournament