ユーザーが新しいコミュニティを作成している場合にのみ、テンプレートのコンテンツcommunities/template.html.erb
を表示したいと思います。
どうやってやるの?このようなものではないでしょうか?
<% if @community.new_record? %>
<textarea class="text_area"><%= render file: "communities/template" %></textarea>
<% else %>
<%= f.text_area :body, :class => 'text_area' %>
<% end %>