[Answered ]-Filtering Base Django User by multiple groups

1👍

You can implement two JOINs by using two .filter(…) clauses [Django-doc], and thus filter with:

User.objects.filter(groups=a).filter(groups=b)

Leave a comment