summaryrefslogtreecommitdiff
path: root/lib/sampling/manual.html.erb
diff options
context:
space:
mode:
authortkimia <tkimia@purdue.edu>2014-04-28 20:03:34 -0400
committertkimia <tkimia@purdue.edu>2014-04-28 20:03:34 -0400
commit1a6450ec1f5c538eff6dbf6f91582c47fb16e3cc (patch)
treedc1a9455fedb082a3be0bb36ac19aae5cbbe39fd /lib/sampling/manual.html.erb
parent3992a2e52a950c644cfe56bc23991e3a03166568 (diff)
parent3ab30900798a838b399d06f28251b6cdd82a94de (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'lib/sampling/manual.html.erb')
-rw-r--r--lib/sampling/manual.html.erb14
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/sampling/manual.html.erb b/lib/sampling/manual.html.erb
index cf873b4..b783506 100644
--- a/lib/sampling/manual.html.erb
+++ b/lib/sampling/manual.html.erb
@@ -1 +1,13 @@
-<!-- TODO -->
+<% if @tournament.hosts.include? @current_user %>
+ <input type="hidden" name="update_action" value="finish" >
+ <% @match.teams.each do |team| %>
+ <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 %>