This sounds like such a trivial thing to do but it wasn't the most logical.
Alright, you'll need a tuple that contains the True/False value and labels and then a ChoiceField which uses it.
1.
class
CustomForm(forms.Form):
2.
BOOLEAN_CHOICES
=
((
'1'
,
'True label'
), (
'0'
,
'False label'
))
3.
# Filtering fields
4.
is_true
=
forms.ChoiceField(choices
=
BOOLEAN_CHOICES, widget
=
forms.RadioSelect)
Oh what? We're done!