Re: Interrelated form fields

2009-11-03 Thread Julián C . Pérez
Nice discussion :D Any help on Ajax methods or something to achieve this? On Oct 30, 4:25 am, bruno desthuilliers wrote: > On 29 oct, 18:33, Daniel Roseman wrote: > > > On Oct 29, 4:42 pm, bruno desthuilliers > > > > > wrote: > > > (FWIW and IIRC, the appropriate english term is 'Customer' -

Re: Interrelated form fields

2009-10-30 Thread bruno desthuilliers
On 29 oct, 18:33, Daniel Roseman wrote: > On Oct 29, 4:42 pm, bruno desthuilliers > wrote: > > (FWIW and IIRC, the appropriate english term is 'Customer' - please > > someone correct me if I'm wrong) > > OK... the French word 'client' maps to both 'client' and 'customer'. A > lawyer, doctor,

Re: Interrelated form fields

2009-10-29 Thread Daniel Roseman
On Oct 29, 4:42 pm, bruno desthuilliers wrote: > (FWIW and IIRC, the appropriate english term is 'Customer' - please > someone correct me if I'm wrong) OK... the French word 'client' maps to both 'client' and 'customer'. A lawyer, doctor, accountant etc would have clients; a shop has customers.

Re: Interrelated form fields

2009-10-29 Thread bruno desthuilliers
On 29 oct, 14:46, Julián C. Pérez wrote: > Hi all > I have a question to make > I'm tryng to build a form using the following models: > > --- > in models.py > > class Client(models.Model): >    user = models.ForeignKey(User, verbose_name=u'associated user') >    telephone = models.CharField(u'Tel

Interrelated form fields

2009-10-29 Thread Julián C . Pérez
Hi all I have a question to make I'm tryng to build a form using the following models: --- in models.py class Client(models.Model): user = models.ForeignKey(User, verbose_name=u'associated user') telephone = models.CharField(u'Telephone number', max_length=33, blank=False, null=False) cla