+ @expose()
+ def activate(self, id, activo):
+ """Save or create record to model"""
+ r = validate_get(id)
+ try:
+ r.activo = bool(int(activo))
+ except ValueError, e:
+ raise redirect('../list', tg_flash=_(u'Acción inválida.'))
+ raise redirect('../list')
+
+ @expose(template='kid:%s.templates.new' % __name__)