mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-05 08:31:00 -04:00
104 lines
2.6 KiB
Python
104 lines
2.6 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",
|
|
# },
|
|
},
|
|
]
|
|
|
|
|
|
def guidance_nav():
|
|
return [
|
|
{
|
|
"name": "Guidance",
|
|
"link": "main.guidance",
|
|
},
|
|
{
|
|
"name": "Clear goals",
|
|
"link": "main.clear_goals",
|
|
},
|
|
{
|
|
"name": "Rules and regulations",
|
|
"link": "main.rules_and_regulations",
|
|
},
|
|
{
|
|
"name": "Establish trust",
|
|
"link": "main.establish_trust",
|
|
"sub_navigation_items": [
|
|
{
|
|
"name": "Get the word out",
|
|
"link": "main.establish_trust#get-the-word-out",
|
|
},
|
|
{
|
|
"name": "As people receive texts",
|
|
"link": "main.establish_trust#as-people-receive-texts",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
"name": "Write for action",
|
|
"link": "main.write_for_action",
|
|
},
|
|
{
|
|
"name": "Multiple languages",
|
|
"link": "main.multiple_languages",
|
|
},
|
|
{
|
|
"name": "Benchmark performance",
|
|
"link": "main.benchmark_performance",
|
|
},
|
|
]
|