On 9/8/07, dbee <[EMAIL PROTECTED]> wrote: > If I have a campaign object that has 3 groups in it. And I want to > find all the reminder objects that are in those groups ... unless of > course it's a campaign with no groups in it - in which case I'd like > all the reminders associated with that campaign ?
if campaign.group_set.count(): reminders = Reminders.objects.filter(campaigns__groups__id__in=[g.id for g in campaign.group_set.all()) else: reminders = Reminders.objects.filter(campains__pk=campaign.id) -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ 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, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---