diff --git a/app/main/forms.py b/app/main/forms.py index 94d28282f..ab1828fbe 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -554,18 +554,6 @@ class Triage(StripWhitespaceForm): class RequestToGoLiveForm(StripWhitespaceForm): - mou = RadioField( - ( - 'Has your organisation accepted the GOV.UK Notify data sharing and financial ' - 'agreement?' - ), - choices=[ - ('yes', 'Yes'), - ('no', 'No'), - ('don’t know', 'I don’t know') - ], - validators=[DataRequired()] - ) channel_email = BooleanField('Emails') channel_sms = BooleanField('Text messages') channel_letter = BooleanField('Letters') diff --git a/app/main/views/service_settings.py b/app/main/views/service_settings.py index c548dab27..4f38482e2 100644 --- a/app/main/views/service_settings.py +++ b/app/main/views/service_settings.py @@ -198,7 +198,6 @@ def submit_request_to_go_live(service_id): '\n---' '\nOrganisation type: {}' '\nAgreement signed: {}' - '\nMOU in place: {}' '\nChannel: {}\nStart date: {}\nStart volume: {}' '\nPeak volume: {}' '\nFeatures: {}' @@ -207,7 +206,6 @@ def submit_request_to_go_live(service_id): url_for('main.service_dashboard', service_id=current_service['id'], _external=True), current_service['organisation_type'], GovernmentDomain.from_current_user().as_human_readable, - form.mou.data, formatted_list(filter(None, ( 'email' if form.channel_email.data else None, 'text messages' if form.channel_sms.data else None, diff --git a/app/templates/views/service-settings/submit-request-to-go-live.html b/app/templates/views/service-settings/submit-request-to-go-live.html index ff4fb472a..088e1c0cf 100644 --- a/app/templates/views/service-settings/submit-request-to-go-live.html +++ b/app/templates/views/service-settings/submit-request-to-go-live.html @@ -14,13 +14,6 @@

Request to go live

-
-

We need permission to process your data before we can make your service live.

- {{ radios(form.mou, option_hints={ - 'no': 'We’ll send you a copy', - 'don’t know': 'We’ll check for you', - }) }} -
{{ checkbox_group('What kind of messages will you be sending?', [ form.channel_email, form.channel_sms, diff --git a/tests/app/main/views/test_service_settings.py b/tests/app/main/views/test_service_settings.py index 1ed068554..2a6e96edd 100644 --- a/tests/app/main/views/test_service_settings.py +++ b/tests/app/main/views/test_service_settings.py @@ -566,7 +566,6 @@ def test_should_redirect_after_request_to_go_live( 'main.submit_request_to_go_live', service_id=SERVICE_ONE_ID, _data={ - 'mou': 'yes', 'channel_email': 'y', 'channel_sms': 'y', 'start_date': '01/01/2017',