[web2py] Re: GAE problems

2016-03-29 Thread rif
Oh, you mean the db query... Here is the whole controller that's generating the error: def index(): page = int(request.vars['page']) if request.vars['page'] else 0 items_per_page = 10 limitby = (page*items_per_page,(page+1)*items_per_page+1) form = crud.update(Facturi, a0,

[web2py] Re: GAE problems

2016-03-29 Thread Massimo Di Pierro
I cannot tell what the query is. On Tuesday, 29 March 2016 02:06:43 UTC-5, rif wrote: > > The gae query is this: http://11.firmoasa.appspot.com/facturi > > I have this route: > routers = dict( > > # base router > BASE=dict( > default_application='firmoasa', > ), > ) > > And