Django: Make certain fields in a ModelForm required=False

后端 未结 5 2002
无人共我
无人共我 2021-02-02 06:08

How do I make certain fields in a ModelForm required=False?

If I have:

class ThatForm(ModelForm):
  class Meta:
    widgets = {\"text\": Textarea(require         


        
5条回答
  •  無奈伤痛
    2021-02-02 06:53

    the following may be suitable

    class ThatForm(ModelForm):
        text = forms.CharField(required=False, widget=forms.Textarea)
    

提交回复
热议问题