Hi,
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(permisson='blogger')
}
But I cant seem to find out how to do this. How are the permissions groups saved in the user model?