Re: ModelForm using ModelForm

2010-01-01 Thread Daniel Roseman
On Jan 1, 4:37 pm, Frédéric Burlet wrote: > Hi, > > I'm new in the python world and therefore in django. > > I'm using django 1.1.1. > > I started to write a small application and I have a question related to > ModelForms. > > I defined two model objects: > > class Person(models.Model): >        

ModelForm using ModelForm

2010-01-01 Thread Frédéric Burlet
Hi, I'm new in the python world and therefore in django. I'm using django 1.1.1. I started to write a small application and I have a question related to ModelForms. I defined two model objects: class Person(models.Model): first_name = ... last_name = ... address = mod