mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-03 17:48:26 -04:00
Adding a ‘testing’ template it not enough. It needs to have some real looking content, so that we can: - work out what a service is doing - assess whether that’s a reasonable (ie meeting the terms of use) thing to be doing with Notify At the moment we’re having to go back to services quite a lot when they request to go live and ask them for this stuff.
54 lines
2.0 KiB
HTML
54 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-whole">
|
||
<h1 class="heading-large">Request to go live</h1>
|
||
<p>
|
||
Before your service can go live on Notify, you’ll need to:
|
||
</p>
|
||
<ul class='bottom-gutter'>
|
||
{{ tick_cross_done_not_done(
|
||
has_team_members,
|
||
'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,
|
||
) }}
|
||
{{ tick_cross_done_not_done(
|
||
has_templates,
|
||
'Create <a href="{}">templates</a> showing the kind of messages you plan to send'.format(
|
||
url_for('main.choose_template', service_id=current_service.id)
|
||
)|safe,
|
||
) }}
|
||
{% if has_email_templates %}
|
||
{{ tick_cross_done_not_done(
|
||
has_email_reply_to_address,
|
||
'Add an <a href="{}">email reply to address</a>'.format(
|
||
url_for('main.service_email_reply_to', service_id=current_service.id)
|
||
)|safe,
|
||
) }}
|
||
{% endif %}
|
||
</ul>
|
||
<p>
|
||
You also need to accept our <a href="{{ url_for('.terms') }}">terms of use</a>.
|
||
</p>
|
||
<p class="bottom-gutter">
|
||
We’ll make 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">Continue</a>
|
||
</p>
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|