mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-23 09:29:14 -04:00
So that you don’t have to use the footer navigation to switch between these related pages. Matches the template we use for organising features-related content.
55 lines
1.2 KiB
Python
55 lines
1.2 KiB
Python
def features_nav():
|
|
return [
|
|
{
|
|
"name": "Features",
|
|
"link": "main.features",
|
|
"sub_navigation_items": [
|
|
{
|
|
"name": "Emails",
|
|
"link": "main.features_email",
|
|
},
|
|
{
|
|
"name": "Text messages",
|
|
"link": "main.features_sms",
|
|
},
|
|
{
|
|
"name": "Letters",
|
|
"link": "main.features_letters",
|
|
},
|
|
]
|
|
},
|
|
{
|
|
"name": "Roadmap",
|
|
"link": "main.roadmap",
|
|
},
|
|
{
|
|
"name": "Trial mode",
|
|
"link": "main.trial_mode_new",
|
|
},
|
|
{
|
|
"name": "Message status",
|
|
"link": "main.message_status",
|
|
},
|
|
{
|
|
"name": "Security",
|
|
"link": "main.security",
|
|
},
|
|
{
|
|
"name": "Terms of use",
|
|
"link": "main.terms",
|
|
},
|
|
]
|
|
|
|
|
|
def pricing_nav():
|
|
return [
|
|
{
|
|
"name": "Pricing",
|
|
"link": "main.pricing",
|
|
},
|
|
{
|
|
"name": "How to pay",
|
|
"link": "main.how_to_pay",
|
|
},
|
|
]
|