class Agency < ActiveRecord::Base
has_many :events
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
attr_accessible :name, :email, :phone, :address, :city, :state, :zip,
:notes, :is_admin, :password, :password_confirmation, :remember_me
end
class Event < ActiveRecord::Base
belongs_to :agency
has_many :consumers
end
class Consumer < ActiveRecord::Base
belongs_to :event
end
在消费者控制器中,我试图包含代理的一些字段
active_scaffold :consumer do |conf|
list.columns = [
:agency, :event
]
end
有这样的关联机构 -> 事件 -> 消费者。代理和消费者之间没有关联,只是通过事件。
但这会导致错误。
如何包括列出任何字段形式的代理表?