mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-11 18:37:33 -04:00
contact content
This commit is contained in:
@@ -295,6 +295,14 @@ def about_notify():
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@main.route("/about/contact")
|
||||||
|
def contact():
|
||||||
|
return render_template(
|
||||||
|
"views/about/contact.html",
|
||||||
|
navigation_links=about_notify_nav(),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@main.route("/using-notify/guidance/create-and-send-messages")
|
@main.route("/using-notify/guidance/create-and-send-messages")
|
||||||
@user_is_logged_in
|
@user_is_logged_in
|
||||||
def create_and_send_messages():
|
def create_and_send_messages():
|
||||||
|
|||||||
@@ -113,4 +113,8 @@ def about_notify_nav():
|
|||||||
"name": "About notify",
|
"name": "About notify",
|
||||||
"link": "main.about_notify",
|
"link": "main.about_notify",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Contact",
|
||||||
|
"link": "main.contact",
|
||||||
|
},
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -0,0 +1,35 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% set page_title = "Contact" %}
|
||||||
|
|
||||||
|
{% block per_page_title %}
|
||||||
|
{{page_title}}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content_column_content %}
|
||||||
|
<!-- {% with title=page_title %}{% include "components/best-practices/nav_breadcrumb.html" %}{% endwith %} -->
|
||||||
|
<section class="usa-prose">
|
||||||
|
<h1>{{page_title}}</h1>
|
||||||
|
<h2>Notify is designed to be easy to use.</h2>
|
||||||
|
<ul>
|
||||||
|
<li>For information on personalization and data preparation, see <a href="/using-notify/guidance">Using Notify</a>.
|
||||||
|
</li>
|
||||||
|
<li>For help interpreting delivery reports, see <a href="/using-notify/delivery-status">Delivery Status</a>.</li>
|
||||||
|
<li>For details on pricing and what counts as a message part, see <a href="/using-notify/pricing">Tracking
|
||||||
|
Messages</a>.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>If you have technical issues or questions, we are available at <a
|
||||||
|
href="mailto:notify-support@gsa.gov">notify-support@gsa.gov</a>.</p>
|
||||||
|
<p>You can expect a response within one business day.</p>
|
||||||
|
<div class="usa-summary-box maxw-tablet __web-inspector-hide-shortcut__" role="region"
|
||||||
|
aria-labelledby="summary-box-contact-us">
|
||||||
|
<div class="usa-summary-box__body">
|
||||||
|
<div class="usa-summary-box__text">
|
||||||
|
<p> For partnership inquiries see, <u>Join Notify</u> or contact us at <br><a
|
||||||
|
href="mailto:tts-notify@gsa.gov">tts-notify@gsa.gov</a>.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{% endblock %}
|
||||||
@@ -61,6 +61,7 @@ EXCLUDED_ENDPOINTS = tuple(
|
|||||||
"conversation_reply",
|
"conversation_reply",
|
||||||
"conversation_reply_with_template",
|
"conversation_reply_with_template",
|
||||||
"conversation_updates",
|
"conversation_updates",
|
||||||
|
"contact",
|
||||||
"copy_template",
|
"copy_template",
|
||||||
"count_content_length",
|
"count_content_length",
|
||||||
"create_and_send_messages",
|
"create_and_send_messages",
|
||||||
|
|||||||
Reference in New Issue
Block a user