In my Rails 3 project I have:
namespace :admin do
resources :users
end
scope :frontend do
resources :users
end
There is a partial with filename "/views/admin/users/_form_fields.html.haml".
And I want to render it from "/views/frontend/users/_form.html.haml".
This code doesn't work:
render 'admin/users/form_fields', :f => f
render :partial => 'admin/users/form_fields', :locals => {:f => f}? – Hck Jul 8 '11 at 14:47