mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-18 01:14:52 -05:00
The features nav is supposed to navigate your between pages in the app. It’s very unexpected to have it open an external link. Performance isn’t strictly a part of Support, but it’s worked having it there for long enough that it’s probably not a bother.
24 lines
496 B
Python
24 lines
496 B
Python
def features_nav():
|
|
return [
|
|
{
|
|
"name": "Features",
|
|
"link": "main.features",
|
|
},
|
|
{
|
|
"name": "Roadmap",
|
|
"link": "main.roadmap",
|
|
},
|
|
{
|
|
"name": "Security",
|
|
"link": "main.security",
|
|
},
|
|
{
|
|
"name": "Terms of use",
|
|
"link": "main.terms",
|
|
},
|
|
{
|
|
"name": "Using Notify",
|
|
"link": "main.using_notify",
|
|
},
|
|
]
|