Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. topbar = Navbar(
  2. '',
  3. View('Welcome Page', ('welcome')),
  4. Subgroup('Master',
  5. View('Option 1', ('config')),
  6. View('Option 2', ('config')),
  7. View('Option 3', ('config')),
  8. View('Option 4', ('config')),
  9. ),
  10. View('Rename', ('add_case')),
  11. View('Logout', ('logout'))
  12. )
  13. nav.register_element('top', topbar)
  14.  
  15.  
  16. @app.route('/config', methods=('GET', 'POST'))
  17. @app.route('/config/', methods=('GET', 'POST'))
  18. @login_required
  19. def config() -> str:
  20. return redirect(ContextURL('/config'))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement