cant access nested ressource 'comments' in rails 3.0.1
- by DannyRe
Hey,
I hope you can help me.
/config/routes.rb
resources :deadlines do
resources :comments
end
/model/comment.rb
class Comment < ActiveRecord::Base
belongs_to :post, :class_name = "Post", :foreign_key = "post_id"
end
/model/post.rb
class Post < ActiveRecord::Base
has_many :comments
end
When I want to visit: http://localhost:3000/posts/1/comments/new
it says: undefined method `comments_path' for #<#:0x4887138 in _form.html
I use 'formtastic' and the _form.html.erb looks like this:
<% semantic_form_for [@comment] do |form| %
<% form.inputs do %
<%= form.input :content %
<% end %
<% form.buttons do %
<%= form.commit_button %
<% end %
<% end %