mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-17 04:59:37 -04:00
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:
@@ -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,
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -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>.
|
||||
|
||||
Reference in New Issue
Block a user