Files
notifications-admin/app/templates/views/templates/action_blocked.html
Jonathan Bobel c19083b04e Merge branch 'main' of https://github.com/GSA/notifications-admin into 718-clean-up-components-section
# 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
2023-08-31 12:06:55 -04:00

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 %}