equal
deleted
inserted
replaced
874 return super(BooleanField, self).vocabulary(form) |
874 return super(BooleanField, self).vocabulary(form) |
875 if self.allow_none: |
875 if self.allow_none: |
876 return [('', ''), (form._cw._('yes'), '1'), (form._cw._('no'), '0')] |
876 return [('', ''), (form._cw._('yes'), '1'), (form._cw._('no'), '0')] |
877 # XXX empty string for 'no' in that case for bw compat |
877 # XXX empty string for 'no' in that case for bw compat |
878 return [(form._cw._('yes'), '1'), (form._cw._('no'), '')] |
878 return [(form._cw._('yes'), '1'), (form._cw._('no'), '')] |
|
879 |
|
880 def format_single_value(self, req, value): |
|
881 """return value suitable for display""" |
|
882 if self.allow_none: |
|
883 if value is None: |
|
884 return u'' |
|
885 if value is False: |
|
886 return '0' |
|
887 return super(BooleanField, self).format_single_value(req, value) |
879 |
888 |
880 def _ensure_correctly_typed(self, form, value): |
889 def _ensure_correctly_typed(self, form, value): |
881 if self.allow_none: |
890 if self.allow_none: |
882 if value: |
891 if value: |
883 return bool(int(value)) |
892 return bool(int(value)) |