From 270e3c17dda1be3fc4e8d3b6aa8a2b17a1cd69dd Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 31 Oct 2016 15:21:29 +0000 Subject: [PATCH] Reword questions to make sense with radio buttons --- app/main/forms.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/main/forms.py b/app/main/forms.py index 3f4970c97..83c1e5623 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -351,7 +351,7 @@ class Feedback(Form): class RequestToGoLiveForm(Form): channel = RadioField( - 'Are you sending emails or text messages or both?', + 'What kind of messages will you be sending?', choices=[ ('emails', 'Emails'), ('text messages', 'Text messages'), @@ -372,8 +372,7 @@ class RequestToGoLiveForm(Form): validators=[DataRequired(message='Can’t be empty')] ) upload_or_api = RadioField( - 'Are you uploading a list of contacts that you’re sending your message to, ' + - 'or are you integrating your system with ours?', + 'How are you going to send messages?', choices=[ ('File upload', 'Upload a spreadsheet of recipients'), ('API', 'Integrate with the GOV.UK Notify API'),