mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-08 01:08:25 -04:00
2/3 of our incomplete requests to go live are incomplete because the Data Sharing and Financial Agreement isn’t signed. We reckon we can be pushier about this by saying it’s ‘incomplete’ where we know the agreement is signed. Where the agreement is signed we should confirm this, rather than make the line disappear. This is so it makes more sense to someone who sees it as ‘incomplete’, signs it, then comes back to the page. If we don’t know whether or not the agreement is signed we should wait until someone has got in touch with us by requesting to go live to figure it out. So that’s why we’re not showing that line at all.
59 lines
2.3 KiB
HTML
59 lines
2.3 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/task-list.html" import task_list_wrapper, task_list_item %}
|
|
|
|
{% block service_page_title %}
|
|
Before you request to go live
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
<div class="grid-row">
|
|
<div class="column-whole">
|
|
<h1 class="heading-large">Before you request to go live</h1>
|
|
{% call task_list_wrapper() %}
|
|
{{ task_list_item(
|
|
current_service.has_team_members,
|
|
'Add a team member who can manage settings, team and usage',
|
|
url_for('main.manage_users', service_id=current_service.id),
|
|
) }}
|
|
{{ task_list_item(
|
|
current_service.has_templates,
|
|
'Add templates with examples of the content you plan to send',
|
|
url_for('main.choose_template', service_id=current_service.id),
|
|
) }}
|
|
{% if current_service.has_email_templates %}
|
|
{{ task_list_item(
|
|
current_service.has_email_reply_to_address,
|
|
'Add an email reply-to address',
|
|
url_for('main.service_email_reply_to', service_id=current_service.id),
|
|
) }}
|
|
{% endif %}
|
|
{% if current_service.has_sms_templates and current_service.shouldnt_use_govuk_as_sms_sender %}
|
|
{{ task_list_item(
|
|
not current_service.sms_sender_is_govuk,
|
|
'Change your text message sender name',
|
|
url_for('main.service_sms_senders', service_id=current_service.id),
|
|
) }}
|
|
{% endif %}
|
|
{% if show_agreement %}
|
|
{{ task_list_item(
|
|
agreement_signed,
|
|
'Get our data sharing and financial agreement signed',
|
|
url_for('main.agreement'),
|
|
) }}
|
|
{% endif %}
|
|
{% endcall %}
|
|
<p>
|
|
You also need to accept our <a href="{{ url_for('.terms') }}">terms of use</a>.
|
|
</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 %}
|