Stuck trying to figure out how this nested form should work. Right now, it's not displaying the embedded text_area (g.text_area), but I don't see why. Any help would be much apprecaited!
class Channel < ActiveRecord::Base
belongs_to :first, :class_name => "Message", :foreign_key => 'first_id'
accepts_nested_attributes_for :first
...
end
<% form_for @channel do |f| %>
<% f.fields_for :first do |g| %>
<%= g.text_area :message %>
<% end %>
<%= f.submit %>
<% end %>