New comment

<% form_for(@comment) do |f| %> <%= f.error_messages %>

<%= f.label :post_id %>
<%= f.text_field :post_id %>

<%= f.label :body %>
<%= f.text_area :body %>

<%= f.submit 'Create' %>

<% end %> <%= link_to 'Back', comments_path %>