Ejemplo n.º 1
0
 def POST(self, id):
     model.del_client(int(id))
     raise web.seeother('/')
Ejemplo n.º 2
0
 def GET( self, id ):
     """ Borrar un cliente """
     model.del_client( id )
     raise web.seeother( '/' )