[web2py] Re: jquery mobile switch in view

2011-07-22 Thread David Marko
The {{extend }} can use variable as parameter so you can, under ome conditions, compute template name and store it into response object(you can place such code in model) e.g. response.template=layoutjq.html ... and in a view use the following: {{extend response.template}}

[web2py] Re: jquery mobile switch in view

2011-07-22 Thread Anthony
On Friday, July 22, 2011 4:56:20 AM UTC-4, David Marko wrote: The {{extend }} can use variable as parameter so you can, under ome conditions, compute template name and store it into response object(you can place such code in model) e.g. response.template=layoutjq.html ... and in a view

[web2py] Re: jquery mobile switch in view

2011-07-22 Thread Ross Peoples
I have been pondering this for quite a while, and the only way I can think of doing this, while retaining the bytecompile option is to wrap the layout.html file in a if/then statement, and checking for mobile browsers in a model somewhere. So your model would have a variable called is_mobile