2016-01-07 12:29:56 +00:00
|
|
|
|
{% extends "withnav_template.html" %}
|
2019-02-15 11:03:19 +00:00
|
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2019-04-29 11:44:05 +01:00
|
|
|
|
{% from "components/page-header.html" import page_header %}
|
2016-01-07 20:11:22 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-08-23 14:15:16 +01:00
|
|
|
|
{% from "components/task-list.html" import task_list_wrapper, task_list_item %}
|
2023-08-30 11:07:38 -04:00
|
|
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
2016-01-07 12:29:56 +00:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block service_page_title %}
|
2018-08-29 10:19:58 +01:00
|
|
|
|
Before you request to go live
|
2016-01-07 12:29:56 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% block backLink %}
|
2023-08-30 11:07:38 -04:00
|
|
|
|
{{ usaBackLink({ "href": url_for('main.service_settings', service_id=current_service.id) }) }}
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2016-01-07 12:29:56 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2023-08-23 16:18:25 -04:00
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="grid-col-12">
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{{ page_header('Before you request to go live') }}
|
2018-08-23 14:15:16 +01:00
|
|
|
|
{% call task_list_wrapper() %}
|
2019-02-15 11:03:19 +00:00
|
|
|
|
{{ task_list_item(
|
|
|
|
|
|
current_service.has_estimated_usage,
|
2019-02-27 13:02:37 +00:00
|
|
|
|
'Tell us how many messages you expect to send',
|
2019-02-15 11:03:19 +00:00
|
|
|
|
url_for('main.estimate_usage', service_id=current_service.id),
|
|
|
|
|
|
) }}
|
2018-08-23 14:15:16 +01:00
|
|
|
|
{{ task_list_item(
|
2018-09-20 09:43:28 +01:00
|
|
|
|
current_service.has_team_members,
|
2018-09-21 14:24:31 +01:00
|
|
|
|
'Add a team member who can manage settings, team and usage',
|
|
|
|
|
|
url_for('main.manage_users', service_id=current_service.id),
|
2018-02-27 11:33:26 +00:00
|
|
|
|
) }}
|
2018-08-23 14:15:16 +01:00
|
|
|
|
{{ task_list_item(
|
2018-09-20 09:43:28 +01:00
|
|
|
|
current_service.has_templates,
|
2018-09-21 14:24:31 +01:00
|
|
|
|
'Add templates with examples of the content you plan to send',
|
|
|
|
|
|
url_for('main.choose_template', service_id=current_service.id),
|
2018-02-27 12:07:50 +00:00
|
|
|
|
) }}
|
2019-03-08 14:26:39 +00:00
|
|
|
|
{% if current_service.intending_to_send_email %}
|
2018-08-23 14:15:16 +01:00
|
|
|
|
{{ task_list_item(
|
2018-09-20 09:43:28 +01:00
|
|
|
|
current_service.has_email_reply_to_address,
|
2019-07-09 16:38:47 +01:00
|
|
|
|
'Add a reply-to email address',
|
2018-09-21 14:24:31 +01:00
|
|
|
|
url_for('main.service_email_reply_to', service_id=current_service.id),
|
2018-02-27 14:25:20 +00:00
|
|
|
|
) }}
|
|
|
|
|
|
{% endif %}
|
2019-03-05 10:30:40 +00:00
|
|
|
|
{% if (
|
2019-03-08 14:26:39 +00:00
|
|
|
|
current_service.intending_to_send_sms
|
2019-03-05 10:30:40 +00:00
|
|
|
|
and current_service.shouldnt_use_govuk_as_sms_sender
|
|
|
|
|
|
) %}
|
2018-08-23 16:11:08 +01:00
|
|
|
|
{{ task_list_item(
|
2018-09-20 09:43:28 +01:00
|
|
|
|
not current_service.sms_sender_is_govuk,
|
2018-09-21 14:24:31 +01:00
|
|
|
|
'Change your text message sender name',
|
|
|
|
|
|
url_for('main.service_sms_senders', service_id=current_service.id),
|
2018-08-23 16:11:08 +01:00
|
|
|
|
) }}
|
|
|
|
|
|
{% endif %}
|
2018-08-23 14:15:16 +01:00
|
|
|
|
{% endcall %}
|
2019-04-11 14:35:30 +01:00
|
|
|
|
{% if not current_user.is_gov_user %}
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<p>
|
2019-04-11 14:35:30 +01:00
|
|
|
|
Only team members with a government email address can request to go live.
|
|
|
|
|
|
</p>
|
2023-04-28 11:08:12 -07:00
|
|
|
|
{% elif (not current_service.go_live_checklist_completed) %}
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<p>
|
2019-04-11 15:43:26 +01:00
|
|
|
|
You must complete these steps before you can request to go live.
|
2019-04-11 14:35:30 +01:00
|
|
|
|
</p>
|
|
|
|
|
|
{% else %}
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<p>
|
2019-02-15 11:03:19 +00:00
|
|
|
|
When we receive your request we’ll get back to you within one working day.
|
2018-12-12 12:54:22 +00:00
|
|
|
|
</p>
|
2019-02-15 11:03:19 +00:00
|
|
|
|
<p class="bottom-gutter">
|
2023-08-08 16:19:17 -04:00
|
|
|
|
By requesting to go live you’re agreeing to our <a class="usa-link" href="{{ url_for('.terms') }}">terms of use</a>.
|
2018-12-12 12:54:22 +00:00
|
|
|
|
</p>
|
2019-02-15 11:03:19 +00:00
|
|
|
|
{% call form_wrapper() %}
|
|
|
|
|
|
{{ page_footer('Request to go live') }}
|
|
|
|
|
|
{% endcall %}
|
2018-12-12 12:54:22 +00:00
|
|
|
|
{% endif %}
|
2018-02-20 12:18:14 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2016-01-07 12:29:56 +00:00
|
|
|
|
{% endblock %}
|