mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-29 04:09:07 -04:00
We have a policy about how suppliers are allowed to use Notify. But we don’t explain it anywhere. Which drives contact to our support form. This commit that adds a new page that explains the policy. I’ve moved the related content about who else can use Notify from the get started page to this page as well, where it doesn’t need to sit in a details element.
94 lines
2.3 KiB
Python
94 lines
2.3 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": "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",
|
||
},
|
||
]
|
||
|
||
|
||
def using_notify_nav():
|
||
return [
|
||
{
|
||
"name": "Get started",
|
||
"link": "main.get_started",
|
||
},
|
||
{
|
||
"name": "Who it’s for",
|
||
"link": "main.who_its_for",
|
||
},
|
||
{
|
||
"name": "Trial mode",
|
||
"link": "main.trial_mode_new",
|
||
},
|
||
{
|
||
"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": "Branding",
|
||
"link": "main.branding_and_customisation",
|
||
},
|
||
{
|
||
"name": "Send files by email",
|
||
"link": "main.send_files_by_email",
|
||
},
|
||
{
|
||
"name": "Upload a letter",
|
||
"link": "main.upload_a_letter",
|
||
},
|
||
]
|
||
},
|
||
{
|
||
"name": "API documentation",
|
||
"link": "main.documentation",
|
||
},
|
||
]
|