Menu creation using Web2Py?

0

I'm having trouble creating menu on my website using the default Web2py template, any tips and examples?

I tried following example link

Just does not appear on the main page.

    
asked by anonymous 07.02.2014 / 16:39

1 answer

2

To create menu using the default template of web2py just put it in the line:

reponse.menu = [(T('Home'), False, URL('default','index')), (T('About'),False,URL('default','what')), (T('Download'),False,URL('default','download'))]
    
10.02.2014 / 15:03