[web2py] Re: bootstrap 3

2013-08-22 Thread Sebastián Tromer
According to *Paul Irish* 100% faster paint time with Bootstrap 3 Source: http://www.youtube.com/watch?v=Z1IqzeA3XXg El jueves, 1 de agosto de 2013 04:04:49 UTC-3, Massimo Di Pierro escribió: > > Why is 3 better than 2 other than the higher number? The buttons do not > look as nice. > > On Wedne

[web2py] Re: Bad Request Http body is incomplete

2013-10-02 Thread Sebastián Tromer
Aux function to map from args passed in the URL to real db resource def map_resource(): # some code using *args and **vars from process_post # some code calling map_resource()... I don't know if your are running into the same problem, but *this solved my problem*. Greets! Seba

[web2py] Prepolulate datetime field internationalization problem

2015-04-14 Thread Sebastián Tromer
Hello everyone! I'm prepopulating a form made with the FORM helper. In the form I have 2 INPUTs of type DATETIME: INPUT(_name='from', _class='datetime', requires = IS_DATETIME()) I'm prepolutaing this field with: form.vars.from = request.now and I'm getting something like this:* 2015-04-14 19:

[web2py] Re: Prepolulate datetime field internationalization problem

2015-04-15 Thread Sebastián Tromer
solution is: > > form.vars.from = IS_DATETIME()(request.now)[0] > > On Tuesday, 14 April 2015 17:39:01 UTC-5, Sebastián Tromer wrote: >> >> Hello everyone! >> >> I'm prepopulating a form made with the FORM helper. >> In the form I have 2 INPUTs of type DATET