Hi all,
my question is Does simply_helpful is ready for use with nested resources ?
I've tried something like :
# Routes.rb
map.resources :projects do |projects|
projects.resources :iterations
end
# edit.rhtml
<% form_for(@project, @iteration) do |f| %>
# => <form action="/projects/1/iterations/3;edit" method="post">
# new.html
# => <form action="/projects/1/iterations/new" method="post">
Did I miss something ?
Thanks for help and have a good day.