On Tue, Dec 23, 2008 at 12:44 PM, mike <michal...@gmail.com> 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 web2py@googlegroups.com
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to