I was looking to override only a single TextField in the Django admin but not have it influence the other textfield, which I would like to be the default. Here is what I have so far.
formfields_overrides={
models.TextField: {'widget': Textarea(attrs={'rows':1, 'cols':40})}
}
You can specify a form to be used on the add/change pages. By default this is a plain old
ModelForm.Say your model is called
MyModel, and you want to change the widget forfield1but not forfield2: