[Answered ]-Django: relation between permissions and group

1👍

There is a ManyToManyField relation [Django-doc] between Group and Permission. You can obtain the related Groups for a given Permission with:

p.group_set.all()

Leave a comment