[Answered ]-Django Many to Many Query Set Filter

2👍

Use this:

for author in Author.objects.filter(post__isnull=False):
    print author
👤knbk

Leave a comment