content added

This commit is contained in:
Beverly Nguyen
2024-11-14 09:58:04 -08:00
parent ad50568c10
commit ba44ff5e8e
7 changed files with 196 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ from app.formatters import apply_html_class, convert_markdown_template
from app.main import main
from app.main.views.pricing import CURRENT_SMS_RATE
from app.main.views.sub_navigation_dictionaries import (
about_notify_nav,
best_practices_nav,
features_nav,
using_notify_nav,
@@ -270,6 +271,15 @@ def benchmark_performance():
)
@main.route("/about/why-text-messaging")
@user_is_logged_in
def why_text_messaging():
return render_template(
"views/about/why-text-messaging.html",
navigation_links=about_notify_nav(),
)
@main.route("/using-notify/guidance")
@user_is_logged_in
def guidance_index():