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 @@