Re: Newbie question: many-to-many model creation

2010-12-10 Thread Marcos Moyano
http://www.djangoproject.com/documentation/models/many_to_many/ Rgds, Marcos On Fri, Dec 10, 2010 at 8:54 AM, girish shabadimath < girishmss.1...@gmail.com> wrote: > Thanks for the reply,, > Here are my models > > class Checkers(models.Model): >name = models.CharField(max_length = 100) >

Re: Newbie question: many-to-many model creation

2010-12-10 Thread girish shabadimath
Thanks for the reply,, Here are my models class Checkers(models.Model): name = models.CharField(max_length = 100) weight = models.FloatField(default = 0) desc = models.CharField(max_length = 1000) class PrepCheckers(models.Model): name = models.CharField(max_length = 150) ABCchecke

Re: Newbie question: many-to-many model creation

2010-12-10 Thread Kenneth Gonsalves
On Fri, 2010-12-10 at 16:55 +0530, girish shabadimath wrote: > im new to django > > im using django 1.2 > i have a model that has one many-to-many relationship field > > How to create a object of this model ? > > what to pass for the field that has many-to-many relationship? please give some d

Newbie question: many-to-many model creation

2010-12-10 Thread girish shabadimath
Hi all, im new to django im using django 1.2 i have a model that has one many-to-many relationship field How to create a object of this model ? what to pass for the field that has many-to-many relationship? -- Girish M S -- You received this message because you are subscribed to the Google G