I am using Formtastic and also using the accepts_nested_attributes_for ..here are models
class Tournament < ActiveRecord::Base
has_many :courts, :dependent => :destroy
accepts_nested_attributes_for :courts, :allow_destroy => true
class Court < ActiveRecord::Base
belongs_to :tournament
I need to have a form that one of the questions in the tournament form will determine how many courts i need to build. Here is my approach now
def new
@tournament = Tournament.new
25.times do
@tournament.courts.build
end
and in the view
<%= semantic_form_for @tournament do |f| %>
<%= f.inputs do %>
<%= f.input :number_courts, :hint => "How many courts are available?" %>
<%= f.semantic_fields_for :courts do |ct| %>
<%= ct.input :name %>
<% end %>
the problem with this approach is that I will always prompt the user with 25 fields when really i need only the amount they enter from the question "How many courts are available?"
Is there a way to do this or just add them with a link ...any ideas