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">
|
2018-03-12 12:29:25 +00:00
|
|
|
|
<div class="column-whole">
|
2018-02-20 12:18:14 +00:00
|
|
|
|
<h1 class="heading-large">Request to go live</h1>
|
|
|
|
|
|
<p>
|
2018-03-12 12:29:25 +00:00
|
|
|
|
Before your service can go live on Notify, you’ll need to:
|
2018-02-27 11:33:26 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
<ul class='bottom-gutter'>
|
|
|
|
|
|
{{ tick_cross_done_not_done(
|
|
|
|
|
|
has_team_members,
|
2018-03-12 12:29:25 +00:00
|
|
|
|
'Have more than one <a href="{}">team member</a> with the ‘Manage service’ permission'.format(
|
|
|
|
|
|
url_for('main.manage_users', service_id=current_service.id)
|
|
|
|
|
|
)|safe,
|
2018-02-27 11:33:26 +00:00
|
|
|
|
) }}
|
2018-02-27 12:07:50 +00:00
|
|
|
|
{{ tick_cross_done_not_done(
|
|
|
|
|
|
has_templates,
|
2018-04-09 13:40:03 +01:00
|
|
|
|
'Create <a href="{}">templates</a> showing the kind of messages you plan to send'.format(
|
2018-03-12 12:29:25 +00:00
|
|
|
|
url_for('main.choose_template', service_id=current_service.id)
|
|
|
|
|
|
)|safe,
|
2018-02-27 12:07:50 +00:00
|
|
|
|
) }}
|
2018-02-27 14:25:20 +00:00
|
|
|
|
{% if has_email_templates %}
|
|
|
|
|
|
{{ tick_cross_done_not_done(
|
|
|
|
|
|
has_email_reply_to_address,
|
2018-03-12 12:29:25 +00:00
|
|
|
|
'Add an <a href="{}">email reply to address</a>'.format(
|
|
|
|
|
|
url_for('main.service_email_reply_to', service_id=current_service.id)
|
2018-02-27 14:25:20 +00:00
|
|
|
|
)|safe,
|
|
|
|
|
|
) }}
|
|
|
|
|
|
{% endif %}
|
2018-02-27 11:33:26 +00:00
|
|
|
|
</ul>
|
|
|
|
|
|
<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>
|
2018-03-12 12:29:25 +00:00
|
|
|
|
<p class="bottom-gutter">
|
|
|
|
|
|
We’ll make your service live within one working day.
|
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 %}
|