Modify your Meta class to include the extra fields on the model form. The Meta classes are not inherited.
You may also need to override the save() method on your model form to actually save the contents of those extra fields in the inherited form. -James On Nov 13, 2014 6:32 PM, "Michael" <michael.palumb...@gmail.com> wrote: > Hi, > > Why does the following not give a final model form with 3 fields? > The two extra fields are not available. If I move them directly into the > model form, it works but I wanted to declare these fields in a separate > form because I plan on reusing them in several forms. > Is there a way to do that? > > class FormA(forms.Form): > extra_field_1 = forms.CharField(required=False) > extra_field_2 = forms.CharField(required=False) > > class ModelFormA(FormA, forms.ModelForm): > class Meta: > model = ModelA > fields = ['email'] > > Thanks > Mike > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/53753989-9f3b-4a46-b96a-5edf7d7ccd69%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/53753989-9f3b-4a46-b96a-5edf7d7ccd69%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CA%2Be%2BciW0NwTDLRKZH9D5nPOCQfbqpen6ng_EH24B6bJ6d-xdUA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.