Re: newforms question with multiple object types in the same form

2007-10-02 Thread Fred Palmer
Thanks... I think that might be it! On 10/2/07, Doug B <[EMAIL PROTECTED]> wrote: > > > Search for 'prefix' in the regression tests, that does what you want. > Doesn't seem to be in the docs. > > > http://code.djangoproject.com/browser/django/trunk/tests/regressiontests/forms/forms.py > > > > > >

Re: newforms question with multiple object types in the same form

2007-10-02 Thread Doug B
Search for 'prefix' in the regression tests, that does what you want. Doesn't seem to be in the docs. http://code.djangoproject.com/browser/django/trunk/tests/regressiontests/forms/forms.py --~--~-~--~~~---~--~~ You received this message because you are subscrib

newforms question with multiple object types in the same form

2007-10-02 Thread Fred Palmer
Hi, I'm looking for the recommended way of handling this. I have some models like so: class ContactInfo(models.Model): uuid= UUIDField('UUID', blank=False, maxlength=50, core=True, unique=True, editable=False) first_name = models.CharField(blank=True, maxlength=20) l