From 87c5e7efebd040aef0f0479ccf86877155bb5cea Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 30 Sep 2016 14:49:50 -0400 Subject: Refs #27186 -- Fixed model form default fallback for CheckboxSelectMultiple. --- docs/ref/forms/widgets.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'docs/ref/forms') diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt index 8a6864b5b7..99514e46a2 100644 --- a/docs/ref/forms/widgets.txt +++ b/docs/ref/forms/widgets.txt @@ -280,10 +280,11 @@ foundation for custom widgets. The method's result affects whether or not a field in a model form :ref:`falls back to its default `. - A special case is :class:`~django.forms.CheckboxInput`, which always - returns ``False`` because an unchecked checkbox doesn't appear in the - data of an HTML form submission, so it's unknown whether or not the - user actually submitted a value. + Special cases are :class:`~django.forms.CheckboxInput` and + :class:`~django.forms.CheckboxSelectMultiple`, which always return + ``False`` because an unchecked checkbox doesn't appear in the data of + an HTML form submission, so it's unknown whether or not the user + actually submitted a value. ``MultiWidget`` --------------- -- cgit v1.3