2016-01-07 12:29:56 +00:00
|
|
|
{% extends "withnav_template.html" %}
|
2017-09-27 10:46:52 +01:00
|
|
|
{% from "components/checkbox.html" import checkbox_group %}
|
2016-04-26 13:31:57 +01:00
|
|
|
{% from "components/textbox.html" import textbox %}
|
2016-10-31 15:05:22 +00:00
|
|
|
{% from "components/radios.html" import radios %}
|
2016-01-07 20:11:22 +00:00
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2016-10-24 15:35:51 +01:00
|
|
|
{% from "components/banner.html" import banner_wrapper %}
|
2018-08-23 14:15:16 +01:00
|
|
|
{% from "components/task-list.html" import task_list_wrapper, task_list_item %}
|
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 %}
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
2018-02-20 12:18:14 +00:00
|
|
|
<div class="grid-row">
|
2018-03-12 12:29:25 +00:00
|
|
|
<div class="column-whole">
|
2018-08-29 10:19:58 +01:00
|
|
|
<h1 class="heading-large">Before you request to go live</h1>
|
2018-08-23 14:15:16 +01:00
|
|
|
{% call task_list_wrapper() %}
|
|
|
|
|
{{ 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
|
|
|
) }}
|
2018-09-20 09:43:28 +01:00
|
|
|
{% if current_service.has_email_templates %}
|
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,
|
2018-09-21 14:24:31 +01:00
|
|
|
'Add an email reply-to address',
|
|
|
|
|
url_for('main.service_email_reply_to', service_id=current_service.id),
|
2018-02-27 14:25:20 +00:00
|
|
|
) }}
|
|
|
|
|
{% endif %}
|
2018-09-20 09:43:28 +01:00
|
|
|
{% if current_service.has_sms_templates 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-09-21 14:43:54 +01:00
|
|
|
{% if show_agreement %}
|
|
|
|
|
{{ task_list_item(
|
|
|
|
|
agreement_signed,
|
2018-09-26 10:16:00 +01:00
|
|
|
'Sign our data sharing and financial agreement',
|
2018-09-21 14:43:54 +01:00
|
|
|
url_for('main.agreement'),
|
|
|
|
|
) }}
|
|
|
|
|
{% endif %}
|
2018-08-23 14:15:16 +01:00
|
|
|
{% endcall %}
|
2018-02-27 11:33:26 +00:00
|
|
|
<p>
|
2018-03-12 12:29:25 +00:00
|
|
|
You also need to accept our <a href="{{ url_for('.terms') }}">terms of use</a>.
|
2018-02-20 12:18:14 +00:00
|
|
|
</p>
|
|
|
|
|
<p>
|
2018-03-12 12:29:25 +00:00
|
|
|
<a href="{{ url_for('main.submit_request_to_go_live', service_id=current_service.id) }}" class="button">Continue</a>
|
2018-02-20 12:18:14 +00:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2016-01-07 12:29:56 +00:00
|
|
|
{% endblock %}
|