예제 #1
0
 def GET(self):
     input = web.input()
     id = int(input.order)
     model.order_drink(id)
예제 #2
0
파일: code.py 프로젝트: AlfiyaZi/Grab-Bag
 def GET(self):
 	input = web.input()
     id = int(input.order)
     model.order_drink(id)
예제 #3
0
 def POST(self, id):
     id = int(id)
     model.order_drink(id)
     raise web.seeother('/drinks')
예제 #4
0
파일: code.py 프로젝트: AlfiyaZi/Grab-Bag
 def POST(self, id):
     id = int(id)
     model.order_drink(id)
     raise web.seeother('/drinks')