Re: Newbie ForeignKey Filter Question

2008-04-04 Thread Kevin Monceaux
On Fri, 4 Apr 2008, josesoa wrote: > Something like this should do the trick... > > Events.objects.filter(brags__isnull=False) Thanks!!! That pointed me in the right direction. But, it created a QuerySet where, for example, if an event had five brags five copies of the that event were inclu

Re: Newbie ForeignKey Filter Question

2008-04-04 Thread josesoa
Something like this should do the trick... Events.objects.filter(brags__isnull=False) On Apr 4, 8:01 pm, Kevin Monceaux <[EMAIL PROTECTED]> wrote: > Django Fans, > > I've tinkered around briefly off and on with Django for a while now. > Finally a few days ago I finally found one of those "Round

Newbie ForeignKey Filter Question

2008-04-04 Thread Kevin Monceaux
Django Fans, I've tinkered around briefly off and on with Django for a while now. Finally a few days ago I finally found one of those "Round Tuits" I've been looking for and started converting one of the web sites I act as webmaster for from PHP to Django. My goal at this point is just to co