Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
share|improve this question
Why not render :partial => 'admin/users/form_fields', :locals => {:f => f}? – Hck Jul 8 '11 at 14:47

1 Answer

up vote 2 down vote accepted

To pass local variables you need this sintax:

render :partial => "/admin/users/form_fields", :locals => { :f => f }

Hope this helps. you can take a look to Rails Guide: Using Partials

share|improve this answer
Thanks, but the problem is not in passing variables to the partial. The problem is how to set correct name for the partial from another namespace. "admin/users/form_fields" is incorrect one. – Aleksandr Shvalev Jul 8 '11 at 15:03
I think yout forgot one slash at the beginning: "/admin/users/form_fields" so it indicates that the route is absolute and not relative – JCorcuera Jul 8 '11 at 15:28
Doesn't work anyway. – Aleksandr Shvalev Jul 8 '11 at 15:53
Sorry, it works! I've made a mistake. Thank you! – Aleksandr Shvalev Jul 10 '11 at 8:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.