I have two very similar models Pretreatment and Diagnosis, that belong to the model Patient:
class Pretreatment < ActiveRecord::Base belongs_to :patient a
You can use fields_for for the second model, which works like form_for but doesn't generate the form tags. See the docs.
fields_for
form_for