i have a simple ModelForm:
class MyForm(ModelForm): def __init__(self, *args, **kwargs): super(MyForm, self).__init__(*args, **kwargs) d
You can use the exclude property to remove fields from a ModelForm
exclude = ('field_name1', 'field_name2,)