mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-20 16:13:24 -04:00
Platform admins can now disable sending sms for a service. If sending sms is disabled, this will also hide all the other sms options in the Settings table.
39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block service_page_title %}
|
|
Text messages
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-five-sixths">
|
|
<h1 class="heading-large">Text messages</h1>
|
|
{% if 'sms' in current_service.permissions %}
|
|
<p>
|
|
Your service can send text messages.
|
|
</p>
|
|
<p>
|
|
If you want to turn it off,
|
|
<a href="{{ url_for('.support') }}">get in touch with the GOV.UK Notify team</a>.
|
|
</p>
|
|
{% else %}
|
|
<p>
|
|
Sending text messages is an invitation‑only feature.
|
|
</p>
|
|
<p>
|
|
If you want to try it out,
|
|
<a href="{{ url_for('.support') }}">get in touch with the GOV.UK Notify team</a>.
|
|
</p>
|
|
{% endif %}
|
|
{{ page_footer(
|
|
back_link=url_for('.service_settings', service_id=current_service.id),
|
|
back_link_text='Back to settings'
|
|
) }}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|