13👍
✅
Yes, you can limit choices based on groups, here is one example
user = models.ForeignKey(User, unique=False, limit_choices_to= Q( groups__name = 'GroupName') )
try this, it works!
Source:stackexchange.com