Read more

Get the current layout's name in a view or partial

Arne Hartherz
October 27, 2010Software engineer at makandra GmbH

This was valid for ancient Rails versions. It won't work on current Railses.

This returns the name (including path) of your current layout:

response.layout
=> "layouts/admin" # inside views that are using the 'admin' layout
Illustration book lover

Growing Rails Applications in Practice

Check out our e-book. Learn to structure large Ruby on Rails codebases with the tools you already know and love.

  • Introduce design conventions for controllers and user-facing models
  • Create a system for growth
  • Build applications to last
Read more Show archive.org snapshot

You most likely do not need the full path, so go ahead and do this:

File.basename(response.layout)
=> "admin"
Posted by Arne Hartherz to makandra dev (2010-10-27 10:06)