Re: Help with a somewhat complex reverse ForeignKey lookup.

2011-01-12 Thread Peter
And your example of course worked It's obvious really and just stupid of me. 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-us...@googlegroups.com. To unsubscribe from this group, send ema

Re: Help with a somewhat complex reverse ForeignKey lookup.

2011-01-12 Thread Peter Magnusson
Yes of course my mistake when "washing" my original messy code Peter Magnusson MUSTADFORS BRUKS AB | Sågbrovägen 1 | SE66010 Dals Långed | Phone +46 (0)531-71 435 | Mobile +46 (0)76-824 96 04 | http://www.mustad.se On Wed, Jan 12, 2011 at 15:32, Daniel Roseman wrote: > On Wednesday, Janu

Re: Help with a somewhat complex reverse ForeignKey lookup.

2011-01-12 Thread Daniel Roseman
On Wednesday, January 12, 2011 2:04:28 PM UTC, Peter wrote: > > If I have a couple of models like these (just an example) > > class Parent(models.Model): > name = models.CharField(max_length=100) > > class Gender(models.Model): > name = models.CharField(max_length=100) > > class Ch