To me it would look less hacky if you were using if statement in view to
filter what you want to show to your differents users...

Something like this :

# Controller
def Z():
    return EVERYTHING REQUIRED BY THE VIEW


# View
{{if auth.has_membership(auth.id_group('GROUPENAME')):}}
    SHOW WHAT YOU WANT FOR THAT USER
{{elif auth.has_membership(auth.id_group('OTHERGROUPENAME')):}}
    OTHER STUFF
{{pass}}

Richard




On Fri, Nov 30, 2012 at 3:33 PM, Don_X <don.clerm...@gmail.com> wrote:

> an someone help please ...

-- 



Reply via email to