class MyForm(ModelForm):
    field1 = CustomField(custom_option="sdsdsd")
    field2 = CustomField(custom_option="sdsdsd")
    field3 = CustomField(custom_option="sdsdsd")
    # ....

    class Meta:
        model = MyModel
        exclude = ('some_field')

class AnotherForm(MyForm):
    field1 = CustomFIeld(custom_option="different")

    class Meta:
        model = MyModel
        exclude = ('some_field', 'field2')

For some reason, I can't get field2 removed from the subclassed form.
If I subclass AnotherForm from ModelForm, field2 will be removed, but
then I lose all my customizations from MyForm...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to