Exemplo n.º 1
0
 def GET(self):
     input = web.input()
     id = int(input.order)
     model.order_drink(id)
Exemplo n.º 2
0
 def GET(self):
 	input = web.input()
     id = int(input.order)
     model.order_drink(id)
Exemplo n.º 3
0
 def POST(self, id):
     id = int(id)
     model.order_drink(id)
     raise web.seeother('/drinks')
Exemplo n.º 4
0
 def POST(self, id):
     id = int(id)
     model.order_drink(id)
     raise web.seeother('/drinks')