> can i restrict the menu.py items according to the user group?

Definitly, I do it like this:

response.menu = []#[(T('Frontpage'), False, URL('default', 'index'), []),]

if (auth.has_membership('admin')):
response.menu += [(T('Settings'), False, URL('default', 'settings'), []),]


Kenneth



thank you

António

Reply via email to