Displaying 1 result from an estimated 1 matches for "will_be_shown_here".
2006 Jun 09
0
has_many / : through / check_box - update problems
...y :localdetails
has_many :movies, :through=>:rights
end
class LocalDetail < ActiveRecord::Base
belongs_to :movie
belongs_to :territory
end
The tables contain the usual *_id fields, and all display correctly,
so no need to worry there.
Localdetails contains extra info, including a "will_be_shown_here" field
I''ve got code that makes sure that for every Movie-Territory pair, there
is a record in the localdetails table
While in a Movies controller, I want to loop through each Territory and
display a line which allows editing of the localdetails for that Movie
for each Territory, s...