Commit 1233af2902d8516140bf3692f50c143d04abf104
1 parent
a88e733894
Exists in
master
creado el menu bajo rol docente para cuando tenga asignada oferta academica
Showing
1 changed file
with
14 additions
and
0 deletions
Show diff stats
app/Resources/views/base_app.html.twig
... | ... | @@ -65,6 +65,20 @@ |
65 | 65 | </ul> |
66 | 66 | </li> |
67 | 67 | {% endif %} |
68 | + | |
69 | + | |
70 | + | |
71 | + {% if is_granted('ROLE_DOCENTE') %} | |
72 | + <li class="dropdown"> | |
73 | + <a class="dropdown-toggle" data-toggle="dropdown"> <i class="fa fa-list-alt"></i> | |
74 | + <span>Serv. docentes</span> <b class="caret"></b> | |
75 | + </a> | |
76 | + <ul class="dropdown-menu"> | |
77 | + <li><a href="{{ path('servicios_index') }}">Mis Unidades Curriculaes</a></li> | |
78 | + <li><a href="#">Mi Planificacion</a></li> | |
79 | + </ul> | |
80 | + </li> | |
81 | + {% endif %} | |
68 | 82 | |
69 | 83 | |
70 | 84 | {% if is_granted('ROLE_ESTUDIANTE') %} | ... | ... |