I have the following code to put all my users from a multichoice field into a list
USERS = []
for user in User.objects.filter(groups__name='accountexec'):
USERS.append((user.id,user))
I need to use Log.objects.filter() to get all the logs with a user= to a user in the USERS list