I\'m attempting to use a similar Category implementation to this one in the Django Wiki. I\'m wondering what the Django way of doing a search to pull all objects associated wit
If you are using django-categories, which uses MPTT then you can do the following:
Entry.objects.filter(category__in=category.get_descendants(True))