mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 02:33:12 -04:00
We require that a user has a real reply-to email address before going live. We can partially automate this by at least telling users who haven’t done this. This only applies for users that have email templates; we shouldn’t bother users who aren’t going to send emails about this.
59 lines
2.0 KiB
HTML
59 lines
2.0 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/tick-cross.html" import tick_cross_done_not_done %}
|
||
|
||
{% block service_page_title %}
|
||
Request to go live
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
<div class="grid-row">
|
||
<div class="column-five-sixths">
|
||
<h1 class="heading-large">Request to go live</h1>
|
||
<p>
|
||
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',
|
||
) }}
|
||
{{ tick_cross_done_not_done(
|
||
has_templates,
|
||
'You’ve added some templates',
|
||
) }}
|
||
{% if has_email_templates %}
|
||
{{ tick_cross_done_not_done(
|
||
has_email_reply_to_address,
|
||
'You’ve added an email reply to address on the <a href="{}">settings</a> page'.format(
|
||
url_for('main.service_settings', service_id=current_service.id)
|
||
)|safe,
|
||
) }}
|
||
{% endif %}
|
||
</ul>
|
||
<p>
|
||
You also need to:
|
||
</p>
|
||
<ul class="list list-bullet bottom-gutter">
|
||
<li>
|
||
read our <a href="{{ url_for('.terms') }}">terms of use</a>
|
||
</li>
|
||
<li>
|
||
make sure your messages follow the GOV.UK Service Manual standards for
|
||
<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>
|
||
{% endblock %}
|