I have a form with a ModelMultipleChoiceField()
field. The form is used to send a message to user's friends. That means that instead of a generic queryset (e.g. Friends.objects.all()
) I want to put something like queryset = user.friends.all()
.
Is this possible?