Re: non-fields being inherited by ModelForm

2008-12-22 Thread Daniel Roseman
On Dec 22, 4:43 pm, nbv4 wrote: > I have a model which is defines kind of like this: > > MyModel(models.Model) >     field1 = models.BooleanField() >     field2 = models.BooleanField() >     field_num = "1" > > And then I have a form thats pretty much this: > > MyModelForm(models.ModelForm) >    

non-fields being inherited by ModelForm

2008-12-22 Thread nbv4
I have a model which is defines kind of like this: MyModel(models.Model) field1 = models.BooleanField() field2 = models.BooleanField() field_num = "1" And then I have a form thats pretty much this: MyModelForm(models.ModelForm) class meta model = MyModel I want to be ab