Okay nvm i fixed this. Basically for other users having this same question i did it like this, >>> p = someConfigurableProduct >>> v = ProductVariation.objects.filter(parent=p)
v.product.productimage.all() the key was to use 'v.product.' to refer to the actual Product and not the ProductVariation class, which doesn't have any images associated with it. If that makes any sense ;p On Feb 2, 9:53 pm, Evanlec <[email protected]> wrote: > So I have my main product and it has a bunch of variations (different > colors), this works fine, > > but what I need is for the user to be able to _see_ the different > colors on the main product detail page. (To be able to see image > associated with each ProductVariation) > > As it is now, the ProductVariation model has no imagefield associated > with it. > > Is there some good way I can achieve this? > > Thanks in advance --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Satchmo users" 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/satchmo-users?hl=en -~----------~----~----~----~------~----~------~--~---
