I want to get a list of all Django auth user with a specific permission group, something like this:
user_dict = { \'queryset\': User.objects.filter(permi
Groups are many-to-many with Users (you see, nothing unusual, just Django models...), so the answer by cms is right. Plus this works both ways: having a group, you can list all users in it by inspecting user_set attribute.
user_set