initial value in radio button django form

后端 未结 4 1080
暗喜
暗喜 2021-02-19 19:28

how can I declare initial value of radio button?

form.py

YESNO = (
    (\'Yes\',\'Yes\'),
    (\'No\', \'No\'),
)
class MyForm(forms.Form):
   like = for         


        
4条回答
  •  盖世英雄少女心
    2021-02-19 19:33

    this is the way it works initial='N' which is the first item in the tuple. Choices=(('Y','Yes'), ('N','No') rs_field = forms.ChoiceField(choices=Choices),initial='N', widget=forms.RadioSelect)

提交回复
热议问题