Re: Returning Queryset that excludes certain results from another queryset.

2008-10-20 Thread timc3
Sounds like it is, will try it out soon. Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group

Re: Returning Queryset that excludes certain results from another queryset.

2008-10-20 Thread Eric Abrahamsen
On Oct 21, 2008, at 5:38 AM, timc3 wrote: > > So I have a model that looks like this: > > class GroupsOfUser(models.Model): >name = models.CharField(_("Name"), max_length=50) >description = models.TextField(_("Description"), blank=True, > help_text=_("Optional")) >slug = models.SlugF

Returning Queryset that excludes certain results from another queryset.

2008-10-20 Thread timc3
So I have a model that looks like this: class GroupsOfUser(models.Model): name = models.CharField(_("Name"), max_length=50) description = models.TextField(_("Description"), blank=True, help_text=_("Optional")) slug = models.SlugField() group_members = models.ManyToManyField(User,