How do I prevent a partial form in a view using HAML templating from rendering an object id?
For example, my show.html.haml for Users contains =render 'shortlists' for its list of shortlists:
%p
Shortlists:
= @shortlists.each do |s|
= render :partial => 'shortlists', :locals => { :s => s }
%p
What I see on the screen is:
Shortlists:
Shortlist A has 0 items
Shortlist B has 5 items
"#<Shortlist:0xa95fa38>#<Shortlist:0xa95f54c>"
How do I prevent
"#<Shortlist:0xa95fa38>#<Shortlist:0xa95f54c>"
from rendering?
