I want to display different layouts based on user. If user is "intraOp" the I want to use layout intraOp, if user is "interOp" I want to display layout interOp while if controller_devise I want to display application layout. I based the user selection on request.path. If request.path is /intraOp then I select user IntraOp, if /interOp then select user interOp and so on. The routes.rb is:
match "intraOp" => "companies#index" match "interOp" => "companies#index" The problem is that I use pagination. When the request.path is /interOp companies#index is launched, and are displayed 10 companies with pagination. When I click for displaying page 2 companies#index is launched but the path is not /interOp/companies......... but is /intraOp/companies.........that is because companies#index is first matched with "intraOp". Have you some suggestions to solve the problem to having different layouts based on user? I prefer to not create two controllers: intraOp and interOp. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

