On Tue, Dec 23, 2008 at 12:44 PM, mike <[email protected]> wrote:
>
> I am using T3, in my setting page I have this var defined:
>
> response.topMenu = [dict(test1='test11', test2='test22')]
>
> In my layout.html template I want to use this, this is what I have:
>
> {{for link in response.topMenu:}}
> {{=link.test1}}
> {{pass}}
>
response.topMenu=dict(test1='test11', test2='test22')
{{for link in response.topMenu.keys():}}
{{=response.topMenu[link]}}
{{pass}}
is how I got your idea to work (i think with some assumptions about your code).
Maybe someone has a better way....
-wj
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web2py Web Framework" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---