summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-28 19:41:42 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-28 19:41:42 -0400
commit6684e7ef558f6b123577019708f6495f3475593c (patch)
tree274423d6f26c09f2f50a95116c763bb39cac99ef
parent8dade78c49ad03085166c41d8b334a6ade3a287e (diff)
Use labels in lib/sampling/manual.html.erb
-rw-r--r--lib/sampling/manual.html.erb8
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 %>