I have the following models:
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable, :encryptable
belongs_to :club
end
and
class Club < ActiveRecord::Base
has_many :users
accepts_nested_attributes_for :users
end
given that "accepts_nested_attributes_for" must go on the "has_many" side, how do I construct a nested form that accepts nested, devise, user data please?