]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/menu.py
Apunto el URL a AlumnosInscriptos que tiene mas sentido para Curso.
[z.facultad/75.52/sercom.git] / sercom / menu.py
1 # vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
2
3 from turbogears import url
4 from turbogears.identity import SecureResource
5 from turbogears import identity
6
7 class Menu:
8     def __init__(self, base):
9         self.base = base
10         self.items = [i for i in dir(base)
11             if isinstance(getattr(base, i), SecureResource)]
12         self.items.sort()
13         self.items = ['dashboard'] + self.items
14
15     def _check(self, c):
16         if hasattr(c, 'hide_to_admin') and 'admin' in identity.current.permissions: return False
17         return c.require.eval_with_object(identity.current)
18
19     def __repr__(self):
20         option = u"""<option value="%s">%s</option>" """
21         template = """
22         <div id="navbar">
23                         Ir a :
24                         <select OnChange="window.location=this.options[this.selectedIndex].value;">
25                                 %s
26                         </select>
27                 </div>
28         """
29         s = option % ('', '-----')
30         for i in self.items:
31             if i == 'dashboard' or self._check(getattr(self.base, i)):
32                 s += option % (url('/' + i), i.capitalize().replace('_', ' '))
33         return template % s
34