ChoiceField と CharField を含むフォームがあります。ここで、ChoiceField の特定の選択肢 (例: 選択肢 3) を選択したときに、CharField を有効にしたいと考えています。それ以外の場合は、CharField を無効にする必要があります。
私の選択フィールド
choices = (('1', 'some text',),
('2', 'some text',),
('3', 'some text',))
host = forms.ChoiceField(choices = choices)
そして単純な CharField
hostAdress = forms.CharField()
このようにするためのアイデアはありますか?