Commit 83e49dbe by Tom Christie

Fix checkbox input display. Refs #3258.

parent e0c93c17
......@@ -77,7 +77,7 @@ class BoundField(object):
))
def as_form_field(self):
value = '' if self.value is None else force_text(self.value)
value = '' if (self.value is None or self.value is False) else force_text(self.value)
return self.__class__(self._field, value, self.errors, self._prefix)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment