Re: Custom queryset on a ModelForm field

2011-01-07 Thread derek
Re: "why isn't there a proper API documentation on django like doxygen? I find the django documentation full of content but awful structure! " Have a look at: http://docs.djangoproject.com/en/dev/internals/documentation/ I am curious as to what specific problems you have? I have read the docs f

Re: Custom queryset on a ModelForm field

2011-01-05 Thread mrmclovin
Thanks, that did the trick! On Jan 4, 9:22 pm, Daniel Roseman wrote: > On Tuesday, January 4, 2011 7:42:16 PM UTC, mrmclovin wrote: > > > Hi, > > > I have a 'project' model > > > class Project(models.Model): > >     title = models.CharField(max_length=100) > >     links = models.ManyToManyField('

Re: Custom queryset on a ModelForm field

2011-01-04 Thread Daniel Roseman
On Tuesday, January 4, 2011 7:42:16 PM UTC, mrmclovin wrote: > > Hi, > > I have a 'project' model > > class Project(models.Model): > title = models.CharField(max_length=100) > links = models.ManyToManyField('Link', related_name='link') > > and a 'link' model > > class Link(models.Model): >