Re: NewForms Choice Field Working ?

2007-10-04 Thread Chris Brand
staff-gmail wrote: > I'm using vers .96 > I converted a char field to have choices > > old: prefix = models.CharField(maxlength=100, default = 'Mr.') > > I then changed my model: > SALUTATION=( > ('Mr.','Mr.'), > ('Ms.','Ms.'), > ) > ... > prefix = models.CharField(maxlength=100,

NewForms Choice Field Working ?

2007-10-04 Thread staff-gmail
I'm using vers .96 I converted a char field to have choices old: prefix = models.CharField(maxlength=100, default = 'Mr.') I then changed my model: SALUTATION=( ('Mr.','Mr.'), ('Ms.','Ms.'), ) ... prefix = models.CharField(maxlength=100, choices=SALUTATION, default='Mr.') I then ran