Is it possible to append to the exclude or widgets variables of an inherited Form?
I have the following set up so far.
class AddPropertyForm(forms.ModelForm):
num_months = forms.ChoiceField(choices=MONTHS)
request_featured = forms.BooleanField(required=False)
featured_months = forms.ChoiceField(choices=MONTHS)
class Meta():
model = RentalProperty
exclude = ('listing_id', 'active_listing', 'active_listing_expiry_date', 'featured_property', 'featured_expiry_date', 'slug', 'property_manager')
widgets = {
'property_type': forms.Select(attrs={'onchange':'propertyType()'}),
}
class EditPropertyForm(AddPropertyForm):
request_reactivation = forms.BooleanField(required=False)
class Meta(AddPropertyForm.Meta):
exclude = ('address1', 'property_type')
widgets = {
'request_reactivation': forms.CheckboxInput(attrs {'onchange':'reactivateProperty()'}),
}
I am trying to get the end result for EditPropertyForm to look like the following for the exclude and widgets statements.
exclude = ('address1', 'property_type', 'listing_id', 'active_listing', 'active_listing_expiry_date', 'featured_property', 'featured_expiry_date', 'slug', 'property_manager')
widgets = {
'request_reactivation': forms.CheckboxInput(attrs {'onchange':'reactivateProperty()'}),
'property_type': forms.Select(attrs={'onchange':'propertyType()'}),
}
If there is a better approach, please suggest.
Any help is most appreciated.
What about grabbing the properties from the parent Meta class and updating them?
Something like this (untested):
class Meta(AddPropertyForm.Meta):
exclude = tuple(list(AddPropertyForm.Meta.exclude) + ['address1', 'property_type'])
widgets = AddPropertyForm.Meta.widgets.copy()
widgets.update({
'request_reactivation': forms.CheckboxInput(attrs {'onchange':'reactivateProperty()'}),
})
It's not pretty, but should get you what you want.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With