I am using https://github.com/plataformatec/simple_form and am trying to send a extra parameter. I have a Task, List and ListTask models, in the new page of the of the list I want to be able to insert the number of tasks that will be added. When you submit it will send you to the new list_task page with the correct number of forms populated.
=simple_form_for @list do |s|
=s.input :title
=s.input :task_count
=s.button :submit
This produces a error undefined method task_count
, which makes sense because it is not a method in list.