From b45ed282cb9b677d2973d7d25839f4cc60d738bd Mon Sep 17 00:00:00 2001
From: AndrewMurrell <amurrel@purdue.edu>
Date: Mon, 28 Apr 2014 18:36:30 -0400
Subject: Fixing Manual

---
 lib/sampling/manual.html.erb | 13 ++++++++++++-
 lib/sampling/manual.rb       |  1 +
 2 files changed, 13 insertions(+), 1 deletion(-)

(limited to 'lib/sampling')

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
diff --git a/lib/sampling/manual.rb b/lib/sampling/manual.rb
index cfecd8f..1787cb7 100644
--- a/lib/sampling/manual.rb
+++ b/lib/sampling/manual.rb
@@ -31,6 +31,7 @@ module Sampling
 		end
 
 		def render_user_interaction(user)
+			@tournament = @match.tournament_stage.tournament
 			@current_user = user
 			@users = @match.users
 			@stats = @match.stats_from(self.class)
-- 
cgit v1.2.3-2-g168b