Hi,

Sorry for asking a new B question. I have following code in a module.py:


class Group(models.Model):
......
 users = models.ManyToManyField(User, blank=True, null=True)
.....

I can add user or delete user by calling Group.users.add(user) or 
Group.users.remove(user), but how can I check if the user has already in 
the database?

Thank you.

 -j

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/017b0bc2-ff5c-4a42-936d-00da2b246cbf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to