From: Ricardo Markiewicz Date: Sun, 4 Mar 2007 17:46:50 +0000 (+0000) Subject: nota no debe ser null X-Git-Tag: pre-merge~7 X-Git-Url: https://git.llucax.com/z.facultad/75.52/sercom.git/commitdiff_plain/0517323e96a9af25ceb8acc756a8146d160d0251?hp=d20df6d112f64611501e68876c4f2f872a27bc3e nota no debe ser null --- diff --git a/sercom/subcontrollers/correccion/__init__.py b/sercom/subcontrollers/correccion/__init__.py index 573241e..7908577 100644 --- a/sercom/subcontrollers/correccion/__init__.py +++ b/sercom/subcontrollers/correccion/__init__.py @@ -39,7 +39,7 @@ class CorreccionForm(W.TableForm): lentregador = W.Label(label=_(u'Entregador')) lentrega = W.Label(label=_(u'Entrega')) lcorrector = W.Label(label=_(u'Corrector')) - nota = W.TextField(label=_(u'Nota'), validator=V.Number(not_empty=False, strip=True)) + nota = W.TextField(label=_(u'Nota'), validator=V.Number(not_empty=True, strip=True)) observaciones = W.TextArea(label=_(u'Observaciones'), validator=V.UnicodeString(not_empty=False, strip=True)) fields = Fields() javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_instancia');")]