From 06869ee2f3e91780a6873f8012660fdc7e2149a1 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Wed, 29 Aug 2018 11:04:53 +0100 Subject: [PATCH] Make the whole line a link This looks cleaner than having part of the line as a link, and because of the active opening word feels like more of a call to action. --- .../views/service-settings/request-to-go-live.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 c967858a0..f80287c1a 100644 --- a/app/templates/views/service-settings/request-to-go-live.html +++ b/app/templates/views/service-settings/request-to-go-live.html @@ -17,22 +17,22 @@ {% call task_list_wrapper() %} {{ task_list_item( has_team_members, - 'Add a team member who can manage settings, team and usage + 'Add a team member who can manage settings, team and usage '.format( url_for('main.manage_users', service_id=current_service.id) )|safe, ) }} {{ task_list_item( has_templates, - 'Add content to -templates to show the kind of messages you’ll send'.format( + 'Add content to +templates to show the kind of messages you’ll send'.format( url_for('main.choose_template', service_id=current_service.id) )|safe, ) }} {% if has_email_templates %} {{ task_list_item( has_email_reply_to_address, - 'Add an email reply-to address'.format( + 'Add an email reply-to address'.format( url_for('main.service_email_reply_to', service_id=current_service.id) )|safe, ) }} @@ -40,7 +40,7 @@ {% if has_sms_templates and shouldnt_use_govuk_as_sms_sender %} {{ task_list_item( not sms_sender_is_govuk, - 'Change your text message sender name'.format( + 'Change your text message sender name'.format( url_for('main.service_sms_senders', service_id=current_service.id) )|safe ) }}