I\'m trying to customise a ActiveAdmin form for a Recipe model that has a has_many relationship with Step.
class Recipe < ActiveRecord::Base has_many :s
class Recipe < ActiveRecord::Base attr_accessible :step_attributes has_many :steps accepts_nested_attributes_for :steps end