У меня есть следующие две модели
class Office < ActiveRecord::Base
has_many :locations, :dependent => :destroy
end
class Location < ActiveRecord::Base
belongs_to :office
end
У меня есть new.html.erb
для модели офиса и код ниже в OfficeController
def create
@office = Office.new(params[:deal])
if @office.save
redirect_to office_url, :notice => "Successfully created office."
else
render :action => 'new'
end
end
Как добавить поля для модели Location
в new.html.erb
из Office
?
Я хочу иметь возможность иметь поля для местоположений в той же форме.