mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 20:28:25 -04:00
# Conflicts: # app/templates/components/components/footer/_footer.scss # app/templates/components/components/hint/_hint.scss # app/templates/views/service-settings/data-retention.html # app/templates/views/service-settings/sms-senders.html # app/templates/views/two-factor-webauthn.html # app/templates/views/user-profile/security-keys.html
31 lines
964 B
HTML
31 lines
964 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
|
|
|
{% block service_page_title %}
|
|
{{ notification_type.capitalize() }} are disabled
|
|
{% endblock %}
|
|
|
|
{% block backLink %}
|
|
{{ usaBackLink({ "href": back_link }) }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="grid-col-10">
|
|
{{ page_header('{} are disabled'.format(notification_type.capitalize())) }}
|
|
<p>
|
|
Sending {{ 999|message_count_label(notification_type, suffix='') }} has been disabled for your service.
|
|
</p>
|
|
<p>
|
|
If you need to send {{ 999|message_count_label(notification_type, suffix='') }}
|
|
<a class="usa-link" href="{{ url_for('.support') }}">get in touch with the Notify.gov team</a>.
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|