How to cutomize a modelform widget in django 1.1?
- by muudscope
I'm trying to modify a django form to use a textarea instead of a normal input for the "address" field in my house form. The docs seem to imply this changed from django 1.1 (which I'm using) to 1.2. But neither approach is working for me. Here's what I've tried:
class HouseForm(forms.ModelForm):
address = forms.Textarea() # Should work with…