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\'), )
field = BooleanField(widget=RadioSelect(choices=YES_OR_NO), required=False) YES_OR_NO = ( (True, 'Yes'), (False, 'No') )