mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-13 06:54:20 -05:00
61 lines
1.5 KiB
Python
61 lines
1.5 KiB
Python
def features_nav():
|
|
return [
|
|
{
|
|
"name": "Features",
|
|
"link": "main.features",
|
|
"sub_navigation_items": [
|
|
# {
|
|
# "name": "Text messages",
|
|
# "link": "main.features_sms",
|
|
# },
|
|
],
|
|
},
|
|
{
|
|
"name": "Roadmap",
|
|
"link": "main.roadmap",
|
|
},
|
|
{
|
|
"name": "Security",
|
|
"link": "main.security",
|
|
},
|
|
]
|
|
|
|
|
|
def using_notify_nav():
|
|
return [
|
|
{
|
|
"name": "Get started",
|
|
"link": "main.get_started",
|
|
},
|
|
{
|
|
"name": "Trial mode",
|
|
"link": "main.trial_mode_new",
|
|
},
|
|
{
|
|
"name": "Tracking usage",
|
|
"link": "main.pricing",
|
|
},
|
|
{
|
|
"name": "Delivery status",
|
|
"link": "main.message_status",
|
|
},
|
|
{
|
|
"name": "Guidance",
|
|
"link": "main.guidance_index",
|
|
# "sub_navigation_items": [
|
|
# {
|
|
# "name": "Formatting",
|
|
# "link": "main.edit_and_format_messages",
|
|
# },
|
|
# {
|
|
# "name": "Send files by email",
|
|
# "link": "main.send_files_by_email",
|
|
# },
|
|
# ]
|
|
# {
|
|
# "name": "API documentation",
|
|
# "link": "main.documentation",
|
|
# },
|
|
},
|
|
]
|