mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-04-29 21:51:00 -04:00
64 lines
1.9 KiB
Python
64 lines
1.9 KiB
Python
def using_notify_nav():
|
|
nav_items = [
|
|
{"name": "Get started", "link": "main.get_started"},
|
|
{
|
|
"name": "Best practices",
|
|
"link": "main.best_practices",
|
|
"sub_navigation_items": [
|
|
{
|
|
"name": "Clear goals",
|
|
"link": "main.clear_goals",
|
|
},
|
|
{
|
|
"name": "Rules and regulations",
|
|
"link": "main.rules_and_regulations",
|
|
},
|
|
{
|
|
"name": "Establish trust",
|
|
"link": "main.establish_trust",
|
|
},
|
|
{
|
|
"name": "Write for action",
|
|
"link": "main.write_for_action",
|
|
},
|
|
{
|
|
"name": "Multiple languages",
|
|
"link": "main.multiple_languages",
|
|
},
|
|
{
|
|
"name": "Benchmark performance",
|
|
"link": "main.benchmark_performance",
|
|
},
|
|
],
|
|
},
|
|
{"name": "Trial mode", "link": "main.trial_mode_new"},
|
|
{"name": "Tracking usage", "link": "main.pricing"},
|
|
{"name": "Delivery status", "link": "main.message_status"},
|
|
{"name": "How to", "link": "main.how_to"},
|
|
]
|
|
|
|
return nav_items
|
|
|
|
|
|
def about_notify_nav():
|
|
return [
|
|
{
|
|
"name": "About Notify",
|
|
"link": "main.about_notify",
|
|
"sub_navigation_items": [
|
|
{
|
|
"name": "Why text messaging",
|
|
"link": "main.why_text_messaging",
|
|
},
|
|
{
|
|
"name": "Security",
|
|
"link": "main.about_security",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
"name": "Contact us",
|
|
"link": "main.contact",
|
|
},
|
|
]
|