mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-07 18:58:25 -04:00
changing guidance to how-do
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
Explore Notify, add team members, and practice [sending messages to teammates](/using-notify/trial-mode).
|
Explore Notify, add team members, and practice [sending messages to teammates](/using-notify/trial-mode).
|
||||||
|
|
||||||
2. ## Personalize content
|
2. ## Personalize content
|
||||||
Learn how to [personalize messages](/using-notify/guidance) to increase response.
|
Learn how to [personalize messages](/using-notify/how-to) to increase response.
|
||||||
|
|
||||||
3. ## Check delivery status
|
3. ## Check delivery status
|
||||||
[Analyze the delivery](/using-notify/delivery-status) of your messages and download reports
|
[Analyze the delivery](/using-notify/delivery-status) of your messages and download reports
|
||||||
|
|||||||
@@ -217,11 +217,11 @@ def benchmark_performance():
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@main.route("/using-notify/guidance")
|
@main.route("/using-notify/how-to")
|
||||||
@user_is_logged_in
|
@user_is_logged_in
|
||||||
def guidance_index():
|
def how_to():
|
||||||
return render_template(
|
return render_template(
|
||||||
"views/guidance/index.html",
|
"views/how-to/index.html",
|
||||||
navigation_links=using_notify_nav(),
|
navigation_links=using_notify_nav(),
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -266,29 +266,29 @@ def join_notify():
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@main.route("/using-notify/guidance/create-and-send-messages")
|
@main.route("/using-notify/how-to/create-and-send-messages")
|
||||||
@user_is_logged_in
|
@user_is_logged_in
|
||||||
def create_and_send_messages():
|
def create_and_send_messages():
|
||||||
return render_template(
|
return render_template(
|
||||||
"views/guidance/create-and-send-messages.html",
|
"views/how-to/create-and-send-messages.html",
|
||||||
navigation_links=using_notify_nav(),
|
navigation_links=using_notify_nav(),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@main.route("/using-notify/guidance/edit-and-format-messages")
|
@main.route("/using-notify/how-to/edit-and-format-messages")
|
||||||
@user_is_logged_in
|
@user_is_logged_in
|
||||||
def edit_and_format_messages():
|
def edit_and_format_messages():
|
||||||
return render_template(
|
return render_template(
|
||||||
"views/guidance/edit-and-format-messages.html",
|
"views/how-to/edit-and-format-messages.html",
|
||||||
navigation_links=using_notify_nav(),
|
navigation_links=using_notify_nav(),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@main.route("/using-notify/guidance/send-files-by-email")
|
@main.route("/using-notify/how-to/send-files-by-email")
|
||||||
@user_is_logged_in
|
@user_is_logged_in
|
||||||
def send_files_by_email():
|
def send_files_by_email():
|
||||||
return render_template(
|
return render_template(
|
||||||
"views/guidance/send-files-by-email.html",
|
"views/how-to/send-files-by-email.html",
|
||||||
navigation_links=using_notify_nav(),
|
navigation_links=using_notify_nav(),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ def using_notify_nav():
|
|||||||
{"name": "Trial mode", "link": "main.trial_mode_new"},
|
{"name": "Trial mode", "link": "main.trial_mode_new"},
|
||||||
{"name": "Tracking usage", "link": "main.pricing"},
|
{"name": "Tracking usage", "link": "main.pricing"},
|
||||||
{"name": "Delivery Status", "link": "main.message_status"},
|
{"name": "Delivery Status", "link": "main.message_status"},
|
||||||
{"name": "Guidance", "link": "main.guidance_index"},
|
{"name": "How to", "link": "main.how_to"},
|
||||||
]
|
]
|
||||||
|
|
||||||
return nav_items
|
return nav_items
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ class HeaderNavigation(Navigation):
|
|||||||
"pricing",
|
"pricing",
|
||||||
"trial_mode_new",
|
"trial_mode_new",
|
||||||
"message_status",
|
"message_status",
|
||||||
"guidance_index",
|
"how_to",
|
||||||
},
|
},
|
||||||
"accounts-or-dashboard": {
|
"accounts-or-dashboard": {
|
||||||
"conversation",
|
"conversation",
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
<h2 class="heading-medium" id="personalised-messages">Personalized content</h2>
|
<h2 class="heading-medium" id="personalised-messages">Personalized content</h2>
|
||||||
<p class="usa-body">Notify makes it easy to send personalized messages from a single template.</p>
|
<p class="usa-body">Notify makes it easy to send personalized messages from a single template.</p>
|
||||||
<p class="usa-body">See <a class="usa-link" href="{{ url_for('.guidance_index', _anchor='personalized-content') }}">how to personalize your content</a>.</p>
|
<p class="usa-body">See <a class="usa-link" href="{{ url_for('.how_to', _anchor='personalized-content') }}">how to personalize your content</a>.</p>
|
||||||
|
|
||||||
<h2 class="heading-medium" id="bulk-sending">Bulk sending</h2>
|
<h2 class="heading-medium" id="bulk-sending">Bulk sending</h2>
|
||||||
<p class="usa-body">To send a batch of messages at once, upload a list of contact details to Notify. You can also schedule the date and time you want them to be sent.</p>
|
<p class="usa-body">To send a batch of messages at once, upload a list of contact details to Notify. You can also schedule the date and time you want them to be sent.</p>
|
||||||
|
|||||||
@@ -4,11 +4,11 @@
|
|||||||
{% from "components/service-link.html" import service_link %}
|
{% from "components/service-link.html" import service_link %}
|
||||||
|
|
||||||
{% block per_page_title %}
|
{% block per_page_title %}
|
||||||
Guidance
|
How to
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content_column_content %}
|
{% block content_column_content %}
|
||||||
<h1 class="font-body-2xl margin-bottom-3">Guidance</h1>
|
<h1 class="font-body-2xl margin-bottom-3">How to</h1>
|
||||||
|
|
||||||
<p>Notify allows you to easily create templates for messages for your recipients. You can customize messages to encourage
|
<p>Notify allows you to easily create templates for messages for your recipients. You can customize messages to encourage
|
||||||
your recipient to manage their benefits and increase follow-through.</p>
|
your recipient to manage their benefits and increase follow-through.</p>
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
<h1 class="font-body-2xl margin-bottom-3">Contact us</h1>
|
<h1 class="font-body-2xl margin-bottom-3">Contact us</h1>
|
||||||
<p>Notify is designed to be easy to use.</p>
|
<p>Notify is designed to be easy to use.</p>
|
||||||
<ul class="list list-bullet">
|
<ul class="list list-bullet">
|
||||||
<li>For information on personalization and data preparation, see <a href={{ url_for("main.guidance_index") }}>Guidance</a>.</li>
|
<li>For information on personalization and data preparation, see <a href={{ url_for("main.how_to") }}>How to</a>.</li>
|
||||||
<li>For help interpreting delivery reports, see <a href={{ url_for("main.message_status") }}>Delivery Status</a>.</li>
|
<li>For help interpreting delivery reports, see <a href={{ url_for("main.message_status") }}>Delivery Status</a>.</li>
|
||||||
<li>For details on pricing and what counts as a message part, see <a href={{ url_for("main.pricing") }}>Pricing</a>.</li>
|
<li>For details on pricing and what counts as a message part, see <a href={{ url_for("main.pricing") }}>Pricing</a>.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@@ -94,7 +94,7 @@ def test_hiding_pages_from_search_engines(
|
|||||||
"message_status",
|
"message_status",
|
||||||
"how_to_pay",
|
"how_to_pay",
|
||||||
"get_started",
|
"get_started",
|
||||||
"guidance_index",
|
"how_to",
|
||||||
"create_and_send_messages",
|
"create_and_send_messages",
|
||||||
"edit_and_format_messages",
|
"edit_and_format_messages",
|
||||||
"send_files_by_email",
|
"send_files_by_email",
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ EXCLUDED_ENDPOINTS = tuple(
|
|||||||
"get_started_old",
|
"get_started_old",
|
||||||
"go_to_dashboard_after_tour",
|
"go_to_dashboard_after_tour",
|
||||||
"guest_list",
|
"guest_list",
|
||||||
"guidance_index",
|
"how_to",
|
||||||
"history",
|
"history",
|
||||||
"how_to_pay",
|
"how_to_pay",
|
||||||
"inbound_sms_admin",
|
"inbound_sms_admin",
|
||||||
|
|||||||
2
urls.js
2
urls.js
@@ -8,7 +8,7 @@ const sublinks = [
|
|||||||
{ label: 'Trial Mode', path: '/using-notify/trial-mode' },
|
{ label: 'Trial Mode', path: '/using-notify/trial-mode' },
|
||||||
{ label: 'Pricing', path: '/using-notify/pricing' },
|
{ label: 'Pricing', path: '/using-notify/pricing' },
|
||||||
{ label: 'Delivery Status', path: '/using-notify/delivery-status' },
|
{ label: 'Delivery Status', path: '/using-notify/delivery-status' },
|
||||||
{ label: 'Guidance', path: '/using-notify/guidance' },
|
{ label: 'How To', path: '/using-notify/how-to' },
|
||||||
{ label: 'Support', path: '/support' },
|
{ label: 'Support', path: '/support' },
|
||||||
{ label: 'Best Practices', path: '/using-notify/best-practices' },
|
{ label: 'Best Practices', path: '/using-notify/best-practices' },
|
||||||
{ label: 'Clear Goals', path: '/using-notify/best-practices/clear-goals' },
|
{ label: 'Clear Goals', path: '/using-notify/best-practices/clear-goals' },
|
||||||
|
|||||||
Reference in New Issue
Block a user