This is how I went about, to display a Boolean model field in the form as Radio buttons Yes and No.
choices = ( (1,\'Yes\'), (0,\'No\'), )
Use TypedChoiceField.
TypedChoiceField
class EmailEditForm(forms.ModelForm): to_send_form = forms.TypedChoiceField( choices=choices, widget=forms.RadioSelect, coerce=int )