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 I get:
undefined method `comments_path' for #<#<Class:0x4889d18>: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 %>
Is your other model
PostorDeadline? Assuming it isPost:Run
rake routesin the terminal to see all your routes. Further info:Syntax for nested resources is: