#27353: BooleanField raises ValidationError always for RadioSelect widget value
False
-------------------------------+--------------------
Reporter: wbar | Owner: nobody
Type: Uncategorized | Status: new
Component: Forms | Version: 1.10
Severity: Normal | Keywords:
Triage Stage: Unreviewed | Has patch: 0
Easy pickings: 0 | UI/UX: 0
-------------------------------+--------------------
**Model:**
{{{
class MyModel(models.Model):
buggy_field = models.BooleanField(default=False
}}}
**Form:**
{{{
class MyForm(forms.ModelForm):
buggy_field = forms.BooleanField(
widget=forms.RadioSelect(choices=[(True, 'Tak'), (False, 'Nie')]),)
}}}
Buggy place because value is False here:
**django.forms.fields.py+718:**
{{{
def validate(self, value):
if not value and self.required:
raise ValidationError(self.error_messages['required'],
code='required')
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/27353>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/047.12c477305be23ed9a20d130a04d32e97%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.