I have article model with the following attributes: article.rb
class Article < ActiveRecord::Base
attr_accessible :content, :title, :tag_list, :type_list
end
Now for creating each type of the article I want to have a different _form view with different fields.
Does it mean that I need to add new attributes to my article.rb or I have to add multiple models for my article controller for each type?