<% flash[:notice] = 'Sorry, but I couldn\'t create your post! Check the form for details.' if @post.errors.length > 0 %>

Make a post

<% form_for :post, @post, :url => { :action => 'create' } do |f| -%>

<%= show_inline_errors_for(@post, 'title') %>
It needs to be 3-60 characters.

<%= f.text_field :title %>

<%= render :partial => 'form', :locals => { :f => f } %>

<%= f.hidden_field :person_id, :value => [current_person.id] %><%= submit_tag 'Add your post' %>

<% end -%>