mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-11 02:23:19 -04:00
We often check that a service has an appropriate text message sender as a condition of them going live. We don’t mention this anywhere. The services for whom GOVUK is definitely not an appropriate sender are those in local government. As we have more of these teams starting to use Notify, we should streamline the process by making this check automated. This commit adds that check, for teams who: - have text message templates - have self-declared as NHS or local government
60 lines
2.1 KiB
HTML
60 lines
2.1 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/checkbox.html" import checkbox_group %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% from "components/radios.html" import radios %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/banner.html" import banner_wrapper %}
|
||
{% from "components/task-list.html" import task_list_wrapper, task_list_item %}
|
||
|
||
{% block service_page_title %}
|
||
Request to go live
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
<div class="grid-row">
|
||
<div class="column-whole">
|
||
<h1 class="heading-large">Request to go live</h1>
|
||
<p>
|
||
Before your service can go live on Notify, you need:
|
||
</p>
|
||
{% call task_list_wrapper() %}
|
||
{{ task_list_item(
|
||
has_team_members,
|
||
'More than one <a href="{}">team member</a> with the ‘Manage settings’ permission'.format(
|
||
url_for('main.manage_users', service_id=current_service.id)
|
||
)|safe,
|
||
) }}
|
||
{{ task_list_item(
|
||
has_templates,
|
||
'<a href="{}">Templates</a> showing the kind of messages you plan to send'.format(
|
||
url_for('main.choose_template', service_id=current_service.id)
|
||
)|safe,
|
||
) }}
|
||
{% if has_email_templates %}
|
||
{{ task_list_item(
|
||
has_email_reply_to_address,
|
||
'An <a href="{}">email reply-to address</a>'.format(
|
||
url_for('main.service_email_reply_to', service_id=current_service.id)
|
||
)|safe,
|
||
) }}
|
||
{% endif %}
|
||
{% if has_sms_templates and shouldnt_use_govuk_as_sms_sender %}
|
||
{{ task_list_item(
|
||
not sms_sender_is_govuk,
|
||
'Change your text message sender from GOVUK'
|
||
) }}
|
||
{% endif %}
|
||
{% endcall %}
|
||
<p>
|
||
You also need to accept our <a href="{{ url_for('.terms') }}">terms of use</a>.
|
||
</p>
|
||
<p class="bottom-gutter">
|
||
We’ll make your service live within one working day.
|
||
</p>
|
||
<p>
|
||
<a href="{{ url_for('main.submit_request_to_go_live', service_id=current_service.id) }}" class="button">Continue</a>
|
||
</p>
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|