Thanks for the reply, but just to make it more difficult, what if I
have an array of dict objects.

ex. [dict(test1='test11', test2='test22') ,dict(test1='test11',
test2='test22') ,dict(test1='test11', test2='test22') ,dict
(test1='test11', test2='test22') ]

how to I loop through it.



On Dec 23, 3:15 pm, "Wes James" <compte...@gmail.com> wrote:
> 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