]> git.llucax.com Git - z.facultad/75.52/sercom.git/commitdiff
nota no debe ser null
authorRicardo Markiewicz <rmarkie@fi.uba.ar>
Sun, 4 Mar 2007 17:46:50 +0000 (17:46 +0000)
committerRicardo Markiewicz <rmarkie@fi.uba.ar>
Sun, 4 Mar 2007 17:46:50 +0000 (17:46 +0000)
sercom/subcontrollers/correccion/__init__.py

index 573241e55467f17123e43d86da5b9173ee291c50..7908577ccd0037bab7f399eca2ab6f990dcac243 100644 (file)
@@ -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');")]