How do I make certain fields in a ModelForm required=False?
If I have:
class ThatForm(ModelForm): class Meta: widgets = {\"text\": Textarea(require
You could try this:
class ThatForm(ModelForm): class Meta: requireds = { 'text':False, }
requireds must be under Meta.