[web2py] Re: Code in view seems not to be processing variables passed by sessions

2015-10-29 Thread Arlindo Gomes Filho
Problem solved and, most important, concept learnt. Thank you a lot for your help Denes. Arlindo Em sábado, 24 de outubro de 2015 22:58:24 UTC-2, DenesL escreveu: > > > Your view(s) can only see the variables that you return from the > controller, in your case mainly 1: form. > > So your result

[web2py] Re: Code in view seems not to be processing variables passed by sessions

2015-10-24 Thread 'DenesL' via web2py-users
Your view(s) can only see the variables that you return from the controller, in your case mainly 1: form. So your result view is not getting any variables from its controller. You have two options: 1) retrieve the values from the session directly in the view (you have been saving them) 2) retri