ogn-python/ogn_python/navigation.py

15 wiersze
349 B
Python
Czysty Zwykły widok Historia

2019-02-10 13:00:35 +00:00
from flask_nav import Nav
from flask_nav.elements import *
nav = Nav()
# registers the "top" menubar
nav.register_element('top_menubar', Navbar(
View('Home', 'index'),
View('Devices', 'devices'),
View('Receivers', 'receivers'),
View('Airports', 'airports'),
View('Logbook', 'logbook'),
2019-03-23 11:25:21 +00:00
View('Statistics', 'statistics'),
2019-02-10 13:00:35 +00:00
))