コード例 #1
0
ファイル: main.py プロジェクト: LLADzhang/Course_projects
 def POST(self, id):
     model.del_client(int(id))
     raise web.seeother('/')
コード例 #2
0
ファイル: main.py プロジェクト: vgomes/examples
 def GET( self, id ):
     """ Borrar un cliente """
     model.del_client( id )
     raise web.seeother( '/' )