=render "shared/cat_box", :locals => {:cat => @cat}
ActionView::Template::Error (undefined local variable or method `cat' for #<#<Class:0x1062afad8>:0x1062aa240>)
Scratching my beard for a while until I realised that maybe render only looks for locals in the first parameter hash.. e.g. using the full way of rendering a partial:
=render :partial => "shared/cat_box", :locals => {:cat => @cat}
All working fine now!
No comments:
Post a Comment