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-02-27 11:33:26 +00:00
|
|
|
|
{% from "components/tick-cross.html" import tick_cross_done_not_done %}
|
2016-01-07 12:29:56 +00:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block service_page_title %}
|
|
|
|
|
|
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">
|
|
|
|
|
|
<div class="column-five-sixths">
|
|
|
|
|
|
<h1 class="heading-large">Request to go live</h1>
|
|
|
|
|
|
<p>
|
2018-02-27 11:33:26 +00:00
|
|
|
|
Before you request to go live, make sure that:
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<ul class='bottom-gutter'>
|
|
|
|
|
|
{{ tick_cross_done_not_done(
|
|
|
|
|
|
has_team_members,
|
|
|
|
|
|
'Another person in your team has the ‘Manage service’ permission',
|
|
|
|
|
|
) }}
|
2018-02-27 12:07:50 +00:00
|
|
|
|
{{ tick_cross_done_not_done(
|
|
|
|
|
|
has_templates,
|
|
|
|
|
|
'You’ve added some templates',
|
|
|
|
|
|
) }}
|
2018-02-27 11:33:26 +00:00
|
|
|
|
</ul>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
You also need to:
|
2018-02-20 12:18:14 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
<ul class="list list-bullet bottom-gutter">
|
|
|
|
|
|
<li>
|
|
|
|
|
|
read our <a href="{{ url_for('.terms') }}">terms of use</a>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
2018-02-27 11:33:26 +00:00
|
|
|
|
specify your reply to email address or text message sender in your
|
2018-02-20 12:18:14 +00:00
|
|
|
|
<a href="{{ url_for('main.service_settings', service_id=current_service.id) }}">settings</a> page
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
2018-02-27 12:07:50 +00:00
|
|
|
|
make sure your messages follow the GOV.UK Service Manual standards for
|
2018-02-20 12:18:14 +00:00
|
|
|
|
<a href="https://www.gov.uk/service-manual/design/sending-emails-and-text-messages">writing text messages and emails</a>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
Once you’ve made the request, we’ll put 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">Next</a>
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2016-01-07 12:29:56 +00:00
|
|
|
|
{% endblock %}
|