(修正: 2018-02-05)
下記のようなラジオボタンボタン表示
from django import forms class HogeForm(forms.Form): bool_flg = forms.TypedChoiceField( initial=1, coerce=lambda x: bool(int(x)), choices=( (1, u'ON'), (0, u'OFF'), ), widget=forms.RadioSelect, )
続き -> Djangoのフォームでラジオボタン2つのhtmlを手動で書くメモ - 牌語備忘録 -pygo