--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/01e504a5-bbc6-4cee-96e2-158a2803d5b7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I would make Restaurant.dishes a @property that returns all dishes the restaurant's chefs can make:
return Dish.objects.filter(chef__restaurant=self)
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/5742FBA4.5010901%40gmail.com.