vote up 1 vote down star

I have a partial that I'd like to use in a layout but when I load up a page it'll look in a different folder for the partial.

So for my layout I've got.

%html
  %head
%body
  .content
    = yield
  .footer
  = render :partial => 'tracking'

And in my layouts folder I have the partial file "app/views/layouts/_tracking.html.haml" that I'd like to use in the layout for all pages. But when I load up a page It'll give me an error saying it can't find the template "products/_tracking.erb"

flag

2 Answers

vote up 2 vote down check

just use

= render :partial => '/layouts/tracking'
link|flag
vote up 1 vote down

I think you just pass it a full path to it, like 3.4.1 second example http://guides.rubyonrails.org/layouts%5Fand%5Frendering.html#using-partials

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.