Something Ive learned. if you build your menus based on the group permissions, make sure they are logged in too.
if auth.is_logged_in() and auth.has_permission('admin', auth.user.id):
admin menu
elif auth.is_logged_in()
user menu
else:
guest menu
--
Thadeus
On Mon, Aug 9, 2010 at 9:51 AM, Johann Spies <[email protected]> wrote:
> Thanks!
>
> Regards
> Johann
> --
> "Be not deceived; God is not mocked: for whatsoever a
> man soweth, that shall he also reap."
> Galatians 6:7
>

