Re: Django, python, MYSQL, Eclipse3.7

2013-07-07 Thread Branko Majic
On Wed, 3 Jul 2013 15:30:16 -0300 "Rafael E. Ferrero" wrote: > just import one model into another using import statement. > > > 2013/7/3 Branko Majic > > > On Wed, 3 Jul 2013 05:03:35 -0700 (PDT) > > Vamsi Popuri wrote: > > > > > I have 2 projects. They are* project 1* and *project 2*. > > >

Re: Django, python, MYSQL, Eclipse3.7

2013-07-03 Thread Rafael E. Ferrero
just import one model into another using import statement. 2013/7/3 Branko Majic > On Wed, 3 Jul 2013 05:03:35 -0700 (PDT) > Vamsi Popuri wrote: > > > I have 2 projects. They are* project 1* and *project 2*. > > > > *Project 2* has > > *models.py* > > class Address(models.Model): > > Str

Re: Django, python, MYSQL, Eclipse3.7

2013-07-03 Thread Branko Majic
On Wed, 3 Jul 2013 05:03:35 -0700 (PDT) Vamsi Popuri wrote: > I have 2 projects. They are* project 1* and *project 2*. > > *Project 2* has > *models.py* > class Address(models.Model): > Street = models.CharField(max_length=50) > pin = models.CharField(max_length=20) > > *forms.py

Django, python, MYSQL, Eclipse3.7

2013-07-03 Thread Vamsi Popuri
I have 2 projects. They are* project 1* and *project 2*. *Project 2* has *models.py* class Address(models.Model): Street = models.CharField(max_length=50) pin = models.CharField(max_length=20) *forms.py * class Address(forms.Form): .. My question is, In *project 1* i wanna