BakedGoods, LabelIngredients, Ingredients are my tables.
LabelIngredients holds baked_goods_id, ingredients_id and an order
field. I can get the LabelIngredient objects with:
<code>
labelingredients = LabelIngredients.objects.filter( baked_good =
self.id ).order_by( 'order' )
</code>

... but what I would like to get is the Ingredients objects in that
order. I fear my relative late acquaintance with Python is hampering me
here.

Thanks!


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to