Commit 7517f392d62472ce192a0115b46e6b0189a4dd38

Authored by Macieski
1 parent 0e30f7e8
Exists in master

correções notificações

wscacicneo/__init__.py
... ... @@ -50,7 +50,7 @@ def main(global_config, **settings):
50 50 cfg.add_route('edit_favoritos', 'edit_favoritos')
51 51 cfg.add_route('listuser', 'usuario/lista')
52 52 cfg.add_route('delete_user', 'usuario/delete/{matricula}')
53   - cfg.add_route('notify', 'lista/notificacoes')
  53 + cfg.add_route('notify', 'notificacoes/cadastro')
54 54 cfg.add_route('post_notify', 'post_notify')
55 55 cfg.add_route('list_notify', 'notificacoes/lista')
56 56 #
... ...
wscacicneo/templates/menu.pt
... ... @@ -11,7 +11,7 @@
11 11 <ul
12 12 > <li><a href="${request.route_url('root')}orgao/cadastro">Cadastrar Orgão</a></li>
13 13 <li><a href="${request.route_url('root')}orgao/lista">Listar Orgãos</a></li>
14   - <li><a href="${request.route_url('root')}notificacoes/lista">Notificalções</a></li>
  14 + <li><a href="${request.route_url('root')}notificacoes/lista">Notificações</a></li>
15 15 </ul>
16 16 <li class="has_sub">
17 17 <a href="#"><i class="fa fa-file-o"></i> Usuário <span class="pull-right"><i class="fa fa-chevron-right"></i></span></a>
... ...