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