summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-27 03:04:09 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-27 03:04:09 -0400
commit987b3e0d151d58c6b44e16e3ec4d13ce7f303fe7 (patch)
tree24971fe4b80e1dd4b6d27b9041945ffb7163748d /app
parent125d861972b9fcd99147d67b0e8fe4102f96190e (diff)
get the tournament creation page complete
Diffstat (limited to 'app')
-rw-r--r--app/models/tournament.rb3
-rw-r--r--app/views/tournaments/_form.html.erb4
2 files changed, 4 insertions, 3 deletions
diff --git a/app/models/tournament.rb b/app/models/tournament.rb
index 47cda7e..97eee57 100644
--- a/app/models/tournament.rb
+++ b/app/models/tournament.rb
@@ -107,7 +107,7 @@ class Tournament < ActiveRecord::Base
end
def sampling_methods
- make_methods("sampling").collect do |name|
+ make_methods("sampling").select do |name|
"Sampling::#{name.camelcase}".constantize.works_with?(self.game)
end
end
@@ -120,6 +120,7 @@ class Tournament < ActiveRecord::Base
make_methods "seeding"
end
+ private
def make_methods(dir)
@@methods ||= {}
if @@methods[dir].nil? or Rails.env.development?
diff --git a/app/views/tournaments/_form.html.erb b/app/views/tournaments/_form.html.erb
index 78ceca4..b8d6fc1 100644
--- a/app/views/tournaments/_form.html.erb
+++ b/app/views/tournaments/_form.html.erb
@@ -83,9 +83,9 @@
<fieldset><legend>Stages</legend>
<label for="num_stages">Number of tournament stages</label>
- <input type="number" name="num_stages" min="1">
+ <input type="number" name="num_stages" min="1" value="<%= params[:num_stages] ? params[:num_stages].to_i : 1 %>">
<% for i in 1..(params[:num_stages].to_i) do %>
- <%= fields_for "tournament[stages][#{i}]", @tournament.stages do |stage_fields| %>
+ <%= fields_for "tournament[stages][#{i}]", @tournament.stages[i] do |stage_fields| %>
<fieldset><legend>Stage <%= i %></legend>
<%= stage_fields.label :scheduling_method %>
<%= stage_fields.select(:scheduling_method, @tournament.scheduling_methods.map{|method| [method.humanize, method]}) %>