Add line about MOU to checklist

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.
This commit is contained in:
Chris Hill-Scott
2018-09-21 14:43:54 +01:00
parent c2ef522986
commit 5dd45da08c
3 changed files with 65 additions and 1 deletions

View File

@@ -179,8 +179,13 @@ def service_name_change_confirm(service_id):
@login_required
@user_has_permissions('manage_service')
def request_to_go_live(service_id):
agreement_signed = AgreementInfo.from_current_user().agreement_signed
return render_template(
'views/service-settings/request-to-go-live.html'
'views/service-settings/request-to-go-live.html',
show_agreement=agreement_signed is not None,
agreement_signed=agreement_signed,
)

View File

@@ -39,6 +39,13 @@
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>.