> in clip_collections/index.html.haml, line 6 (- for clip in
> @clip_collections.clips)
You should loop through the @clip_collections here. You can't ask for
a relation on a relation (yet). So something like:
@clip_collections.each do |clip_collection|
clip_collection.clips do |clip|
# Do something
end
end
--
Regards,
Dirkjan Bussink
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"merb" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/merb?hl=en
-~----------~----~----~----~------~----~------~--~---