diff options
author | AndrewMurrell <amurrel@purdue.edu> | 2014-04-28 19:32:32 -0400 |
---|---|---|
committer | AndrewMurrell <amurrel@purdue.edu> | 2014-04-28 19:32:32 -0400 |
commit | 55f4c94d089ce622bd4fe0b4c915e8e4cb4122aa (patch) | |
tree | fcf2a0bd0202ffb5be80baf74ff0599d80aa5c72 /lib/sampling/manual.html.erb | |
parent | b6e81846fe2fc87c98e64679638d678df1152ce9 (diff) |
changes to peer review and manual sampling
Diffstat (limited to 'lib/sampling/manual.html.erb')
-rw-r--r-- | lib/sampling/manual.html.erb | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/sampling/manual.html.erb b/lib/sampling/manual.html.erb index c9dd2fe..7b71c29 100644 --- a/lib/sampling/manual.html.erb +++ b/lib/sampling/manual.html.erb @@ -1,12 +1,11 @@ -<% if @tournament.hosts.include? current_user %> - <input type="hidden" name="update_action" value="finish"> +<% 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}" } %> + <input type="radio", name="winner", value="<%= team.id %>" > <%= "Team #{team.id} Won" %> <% end %> - - <%= submit_tag("Finish match") %> - <%= @tournament.settings['ScoringMethod'] %> + <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 |