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