<% @post.tags.build %> <%= form_for(@post) do |post_form| %> <% if @post.errors.any? %>

<%= pluralize(@post.errors.count, "error") %> prohibited this post from being saved:

<% end %>
<%= post_form.label :name %>
<%= post_form.text_field :name %>
<%= post_form.label :title %>
<%= post_form.text_field :title %>
<%= post_form.label :content %>
<%= post_form.text_area :content %>

Tags

<%= render :partial => 'tags/form', :locals => {:form => post_form} %>
<%= post_form.submit %>
<% end %>