I can't find a way to use views from other views.
I think I can explain it better with this example: I have two controllers, IndexController and UserController. The user controller has an action called login with its view which renders the login form and validates the user when a post from its form happens.
In IndexController, there is an action called home which renders the home page view. In this view I want to render the loginform, but I want to re-use the user/login view.
In almost all the frameworks I worked with there is a way to call another controller action in order to re-use and isolate the logic.
I find that, in Rails, there is a helper render that I can call in the following way:
render 'user/login'
or
render :template => 'user/login'
In both cases I only get errors like "the route index/login does not exist" or "the controller index has to login action". Besides, I set the login view file name as login or _login. (I read that is used for partial views.)
RAILS_ROOT/app/views/shared. – halfelf Sep 27 '12 at 8:13