summaryrefslogtreecommitdiff
path: root/lib/sampling/manual.html.erb
diff options
context:
space:
mode:
authorAndrewMurrell <amurrel@purdue.edu>2014-04-28 18:36:30 -0400
committerAndrewMurrell <amurrel@purdue.edu>2014-04-28 18:36:30 -0400
commitb45ed282cb9b677d2973d7d25839f4cc60d738bd (patch)
treee3d8eaeb644247e40a522b7c4d254b3b03f1a5c4 /lib/sampling/manual.html.erb
parentcd19b2591a52ac604632a70929448ee5e78c2568 (diff)
Fixing Manual
Diffstat (limited to 'lib/sampling/manual.html.erb')
-rw-r--r--lib/sampling/manual.html.erb13
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/sampling/manual.html.erb b/lib/sampling/manual.html.erb
index cf873b4..c9dd2fe 100644
--- a/lib/sampling/manual.html.erb
+++ b/lib/sampling/manual.html.erb
@@ -1 +1,12 @@
-<!-- TODO -->
+<% if @tournament.hosts.include? current_user %>
+ <input type="hidden" name="update_action" value="finish">
+ <% @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 %>
+ <p>The match is running; the host has yet to post the scores of the match.</p>
+<% end %> \ No newline at end of file