diff options
author | nfoy <nfoy@purdue.edu> | 2014-04-28 19:57:02 -0400 |
---|---|---|
committer | nfoy <nfoy@purdue.edu> | 2014-04-28 19:57:02 -0400 |
commit | 3ab30900798a838b399d06f28251b6cdd82a94de (patch) | |
tree | b0e5ba4dee18ad9fc0902a1969fdaf9e9306d1f9 /lib/sampling | |
parent | d5d480bc0a98eb3532ce0a6567585b791e44db07 (diff) | |
parent | a81ca51690e81444ecb87435ef29195b1e017f68 (diff) |
Fixed the db/seeds merge conflict
Diffstat (limited to 'lib/sampling')
-rw-r--r-- | lib/sampling/manual.html.erb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/sampling/manual.html.erb b/lib/sampling/manual.html.erb index 7b71c29..b783506 100644 --- a/lib/sampling/manual.html.erb +++ b/lib/sampling/manual.html.erb @@ -1,11 +1,13 @@ <% if @tournament.hosts.include? @current_user %> <input type="hidden" name="update_action" value="finish" > <% @match.teams.each do |team| %> - <input type="radio", name="winner", value="<%= team.id %>" > - <%= "Team #{team.id} Won" %> + <label> + <input type="radio", name="winner", value="<%= team.id %>" > + <%= "Team #{team.id} Won" %> + </label> <% end %> <br> <input type="submit", value="Finish match" > <% else %> <p>The match is running; the host has yet to post the scores of the match.</p> -<% end %>
\ No newline at end of file +<% end %> |