diff --git a/app/templates/views/service-settings/request-to-go-live.html b/app/templates/views/service-settings/request-to-go-live.html
index 16446d9fb..27c7bb16e 100644
--- a/app/templates/views/service-settings/request-to-go-live.html
+++ b/app/templates/views/service-settings/request-to-go-live.html
@@ -12,46 +12,41 @@
{% block maincolumn_content %}
-
+
Request to go live
- Before you request to go live, make sure that:
+ Before your service can go live on Notify, you’ll need to:
{{ tick_cross_done_not_done(
has_team_members,
- 'Another person in your team has the ‘Manage service’ permission',
+ 'Have more than one team member with the ‘Manage service’ permission'.format(
+ url_for('main.manage_users', service_id=current_service.id)
+ )|safe,
) }}
{{ tick_cross_done_not_done(
has_templates,
- 'You’ve added some templates',
+ 'Create some templates'.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,
- 'You’ve added an email reply to address on the settings page'.format(
- url_for('main.service_settings', service_id=current_service.id)
+ 'Add an email reply to address'.format(
+ url_for('main.service_email_reply_to', service_id=current_service.id)
)|safe,
) }}
{% endif %}
- You also need to:
+ You also need to accept our terms of use.
-
-
- Once you’ve made the request, we’ll put your service live within one working day.
+
+ We’ll make your service live within one working day.
- Next
+ Continue
diff --git a/tests/app/main/views/test_service_settings.py b/tests/app/main/views/test_service_settings.py
index 195918629..1ed068554 100644
--- a/tests/app/main/views/test_service_settings.py
+++ b/tests/app/main/views/test_service_settings.py
@@ -456,19 +456,19 @@ def test_should_raise_duplicate_name_handled(
@pytest.mark.parametrize('count_of_users_with_manage_service, expected_user_checklist_item', [
- (1, 'Not done: Another person in your team has the ‘Manage service’ permission'),
- (2, 'Done: Another person in your team has the ‘Manage service’ permission'),
+ (1, 'Not done: Have more than one team member with the ‘Manage service’ permission'),
+ (2, 'Done: Have more than one team member with the ‘Manage service’ permission'),
])
@pytest.mark.parametrize('count_of_templates, expected_templates_checklist_item', [
- (0, 'Not done: You’ve added some templates'),
- (1, 'Done: You’ve added some templates'),
- (2, 'Done: You’ve added some templates'),
+ (0, 'Not done: Create some templates'),
+ (1, 'Done: Create some templates'),
+ (2, 'Done: Create some templates'),
])
@pytest.mark.parametrize('count_of_email_templates, reply_to_email_addresses, expected_reply_to_checklist_item', [
pytest.mark.xfail((0, [], ''), raises=IndexError),
pytest.mark.xfail((0, [{}], ''), raises=IndexError),
- (1, [], 'Not done: You’ve added an email reply to address on the settings page'),
- (1, [{}], 'Done: You’ve added an email reply to address on the settings page'),
+ (1, [], 'Not done: Add an email reply to address'),
+ (1, [{}], 'Done: Add an email reply to address'),
])
def test_should_show_request_to_go_live_checklist(
client_request,