Re: Getting at the fields querysets of a form in a formset

2009-08-05 Thread Malcolm Tredinnick
On Tue, 2009-08-04 at 14:30 -0700, bnl wrote: > Hi Folks > > I'm trying to move up from a complex form based on a model declaration > to a model formset built on the same idea. > > I have a model which has some stuff that looks something like > > class Vocab(models.Model): > ''' Holds the

Getting at the fields querysets of a form in a formset

2009-08-04 Thread bnl
Hi Folks I'm trying to move up from a complex form based on a model declaration to a model formset built on the same idea. I have a model which has some stuff that looks something like class Vocab(models.Model): ''' Holds the values of a choice list aka vocabulary '''