[web2py] Select Image In Custom Registration

2013-11-21 Thread Noah Corradin
I have a custom registration form and i am getting a good grasp of the concepts behind customizing the auth_table. I was curious about one thing i could not find a good direction for. I want users to be able to select an image from a drop down menu at the registration page for their avatar. A

[web2py] Re: orderby variable, uknown column

2013-11-13 Thread Noah Corradin
> > statA = request.vars.stat1 > order=db.allstats[statA] > > On Wednesday, November 13, 2013 3:32:20 AM UTC+1, Noah Corradin wrote: >> >> can someone explain to me why the following does not perform the way i >> thought it would >> >> This works:

Re: [web2py] query from drop down menu

2013-11-13 Thread Noah Corradin
mple, and *search*code there: > http://web2py.com/books/default/chapter/29/03/overview#A-simple-wiki. > > > Kiran Subbaraman > http://subbaraman.wordpress.com/about/ > > On 11/6/2013 7:22 AM, Noah Corradin wrote: > > I am trying to

[web2py] orderby variable, uknown column

2013-11-13 Thread Noah Corradin
can someone explain to me why the following does not perform the way i thought it would This works: results=db(db.allstats.ptype==ptype).select(db.allstats.ALL, orderby=db.allstats.attack) But this does not: statA = request.vars.stat1 order='db.allstats.'+statA results = db(db.allstats.pt

[web2py] query from drop down menu

2013-11-05 Thread Noah Corradin
I am trying to execute a query based on the values of 3 drop down menus. I have the following for drop down menus but i am unsure on how to turn the selected values into queries. Is this the proper way to do it in web2py? {{extend 'layout.html'}} {{rows = db().select(db.stats.ALL)}} {{for row