web/formfields.py
changeset 6333 e3994fcc21c3
parent 6225 a176e68b7d0d
parent 6285 b8a2c9b9a2cb
child 6582 8eb7883b4223
equal deleted inserted replaced
6293:df44d7163582 6333:e3994fcc21c3
   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))