Using HABTM or Has_many through with Active Admin
I've read quite a few of the posts on using active admin with has_many through association but I'm not getting the desired results. Essentially I have 2 models "Conferences" & "Accounts". I need to assign multiple accounts to a conference and multiple conferences to an account. Wether I use HABTM or has_many through doesn't matter to me. I just need to be able to see a dropdown select option when I create a new conference and vice versa on accounts. Account Model class Account < ActiveRecord::Base attr_accessible :address, :city, :name, :phone, :state, :website, :zip has_many :contacts,