X-Git-Url: https://git.llucax.com/software/sercom.git/blobdiff_plain/6c4ff7f616ee60e26929aa325378aa8945dbc89e..4ffbf5f725e8182e03e7e10fd81b9110353778d8:/sercom/subcontrollers/ejercicio/entrega/__init__.py diff --git a/sercom/subcontrollers/ejercicio/entrega/__init__.py b/sercom/subcontrollers/ejercicio/entrega/__init__.py index 069f372..0c2d4e5 100644 --- a/sercom/subcontrollers/ejercicio/entrega/__init__.py +++ b/sercom/subcontrollers/ejercicio/entrega/__init__.py @@ -61,8 +61,7 @@ class EntregaForm(W.TableForm): validator=V.Int(not_empty=True)) inicio = W.CalendarDateTimePicker(label=_(u"Inicio")) fin = W.CalendarDateTimePicker(label=_(u"Fin")) - procesada = W.CheckBox(label=_(u"Procesada?")) - activo = W.CheckBox(label=_(u"Activo?")) + activo = W.CheckBox(label=_(u"Activo?"), attrs=dict(checked='checked')) observaciones = W.TextArea(rows="5", cols="40") ejercicio_id= W.HiddenField() fields = Fields() @@ -88,7 +87,7 @@ class EntregaController(controllers.Controller, identity.SecureResource): @identity.require(identity.has_permission('admin')) def new(self, ejercicio_id, **kw): """Create new records in model""" - form.fields[6].attrs['value'] = ejercicio_id + form.fields[5].attrs['value'] = ejercicio_id return dict(name=name, namepl=namepl, form=form, values=kw, partial=str(ejercicio_id)) @validate(form=form)