<% if @tournament.hosts.include? current_user %> <% @match.teams.each do |team| %> <%= tag :input, {"type" => "radio", "name" => "winner", "value" => "#{team.id}" } %> <%= "Team #{team.id} Won" %> <% end %> <%= submit_tag("Finish match") %> <%= @tournament.settings['ScoringMethod'] %> <% else %>

The match is running; the host has yet to post the scores of the match.

<% end %>