>
> view code is default, I never found function called "view".
What do you mean you never found a function called "view"? What are you
trying to do?
It works now, in html I had to change:
>
> {{=BEAUTIFY(response._vars)}}
>
> to
>
> {{=BEAUTIFY(response._vars['form'])}}
>
Are you saying you modified the generic.html view? You probably shouldn't
do that -- it's designed to be generic, and with this change, it will only
work for this particular function. Instead, you should create a view
specific to your function. For more on how views and generic views work,
see:
http://web2py.com/books/default/chapter/29/3#Say-hello
http://web2py.com/books/default/chapter/29/4#Workflow
http://web2py.com/books/default/chapter/29/10#Generic-views
Anthony