X-Git-Url: https://git.llucax.com/software/sercom.git/blobdiff_plain/3c7aa71976a413b3497876a9dd0d5f4f9a33f180..5f0aa446e2907839443bccf17f7bc527d0a2b665:/sercom/menu.py diff --git a/sercom/menu.py b/sercom/menu.py index da714d1..1d90c89 100644 --- a/sercom/menu.py +++ b/sercom/menu.py @@ -13,17 +13,19 @@ class Menu: self.items = ['dashboard'] + self.items def _check(self, c): + if hasattr(c, 'hide_to_admin') and 'admin' in identity.current.permissions: return False + if hasattr(c, 'hide_to_entregar') and 'admin' not in identity.current.permissions: return False return c.require.eval_with_object(identity.current) def __repr__(self): option = u"""" """ template = """ + Ir a : + + """ s = option % ('', '-----') for i in self.items: