diff options
author | guntasgrewal <guntasgrewal@gmail.com> | 2014-04-28 19:47:54 -0400 |
---|---|---|
committer | guntasgrewal <guntasgrewal@gmail.com> | 2014-04-28 19:47:54 -0400 |
commit | a81ca51690e81444ecb87435ef29195b1e017f68 (patch) | |
tree | 44ef09088041e25451ac2264524ffb9cf838916e /lib/sampling | |
parent | 1288b00d612d5969bfdde5b572cb7b6004b0cb66 (diff) | |
parent | 96fc595c1aefac65b20d931ee0efc6e7033a499d (diff) |
Merge branch 'master' of https://github.com/LukeShu/leaguer
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 %> |