У меня есть следующее:
В моем контроллере:
def gettingstarted
@title = "Getting Started"
respond_to do |format|
format.html { render :layout => true, :showLeftNav => false }
end
end
В моем файле макета приложения по умолчанию Layouts / application.html.erb :
<% showLeftNav = true if local_assigns[:showLeftNav].nil? %>
<body style="<% if showLeftNav == false %>background:none !important;<% end %>">
Я неправильно передаю showLeftNav из контроллера в макет?