use set.set for m2m assignation
This commit is contained in:
parent
8773c67634
commit
1bc0766774
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ class UserProfileAdmin(UserAdmin):
|
|||
perm = Permission.objects.get_by_natural_key(*nat_key)
|
||||
chef_group.permissions.add(perm)
|
||||
# On met tous les chef dans le groupe
|
||||
chef_group.user_set = User.objects.filter(profile__is_chef=True)
|
||||
chef_group.user_set.set(User.objects.filter(profile__is_chef=True))
|
||||
# Les chefs sont dans le groupe Chef
|
||||
if user.profile.is_chef:
|
||||
print("J'aime la choucroute")
|
||||
|
|
Loading…
Reference in a new issue