Railsアプリケーションにsimple_formを使い始めました。いくつかのフォームを変換しているときに、2つのモデルが組み込まれている、一種の埋め込みフォームに出くわしました。これはsimple_formで可能ですか?
<% simple_form_for :topic, :url => forum_topics_path do |t| %>
<%= t.input :name, :label => 'Topic' %></p>
<p>First Post:<br/></p>
Title: <%= text_field :post, :title %> <--- this is where i start having problems
Body: <%= text_area :post, :body %>
<%= t.submit 'Save' %>
ありがとう