It's a bit unusual but here's what I do. My menu is a static HTML file called _x_menu.html. Using jquery Ajax, I load that into the header div on page load.
Now here's the magic. There are multiple menu files, one for each user "level" ( i have 4). My get_menu web method determines which menu to deliver. Hack proof? No, but it'd take some savvy. So, as a final protection mechanism, I have a hash in my python code that associates content with user levels. That way, even if a user did try to directly access a forbidden page, the auth_processor would deny the request. Make sense? On Oct 15, 2012, at 3:37 PM, Tomas Schertel <[email protected]> wrote: > Hi every body! > > I'm planning to have different access profiles in an application I'm writing. > How can I have a different menu for each access profile? > I'm wondering how accomplish it, but I'm kind of stuck... > > Can someone help? > > Thanks. > -- > You received this message because you are subscribed to the Google Groups > "web.py" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/webpy/-/VTruxTA7McoJ. > 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/webpy?hl=en. -- You received this message because you are subscribed to the Google Groups "web.py" 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/webpy?hl=en.
