how to exclude some field from BaseInlineFormSet

2012-06-12 Thread vijay shanker
hi i am trying to do this: class PakageInfoForm(BaseInlineFormSet): class Meta: model = PakageInfo exclude = ['client_sda',] this doesn works .. how to exclude any field from BaseInlineFormSet .. -- You received this message because you are subscribed to the Google Groups "Dj

Re: how to exclude some field from BaseInlineFormSet

2012-06-12 Thread Daniel Roseman
On Tuesday, 12 June 2012 16:34:12 UTC+1, vijay shanker wrote: > > hi > i am trying to do this: > class PakageInfoForm(BaseInlineFormSet): > class Meta: > model = PakageInfo > exclude = ['client_sda',] > this doesn works .. > how to exclude any field from BaseInlineFormSet