Check boxes for a has_many and belongs_to association.
- by Thomas
I have a has_many and belongs_to association.
class Link < ActiveRecord::Base
has_and_belongs_to_many :categories
belongs_to :property
end
class Property < ActiveRecord::Base
has_many :links
end
In the index and show I have <%= link.property.name %> and it will show the Property that I assigned to the link with the…