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 web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
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)