Reword questions to make sense with radio buttons

This commit is contained in:
Chris Hill-Scott
2016-10-31 15:21:29 +00:00
parent d832a9107c
commit 270e3c17dd

View File

@@ -351,7 +351,7 @@ class Feedback(Form):
class RequestToGoLiveForm(Form): class RequestToGoLiveForm(Form):
channel = RadioField( channel = RadioField(
'Are you sending emails or text messages or both?', 'What kind of messages will you be sending?',
choices=[ choices=[
('emails', 'Emails'), ('emails', 'Emails'),
('text messages', 'Text messages'), ('text messages', 'Text messages'),
@@ -372,8 +372,7 @@ class RequestToGoLiveForm(Form):
validators=[DataRequired(message='Cant be empty')] validators=[DataRequired(message='Cant be empty')]
) )
upload_or_api = RadioField( upload_or_api = RadioField(
'Are you uploading a list of contacts that youre sending your message to, ' + 'How are you going to send messages?',
'or are you integrating your system with ours?',
choices=[ choices=[
('File upload', 'Upload a spreadsheet of recipients'), ('File upload', 'Upload a spreadsheet of recipients'),
('API', 'Integrate with the GOV.UK Notify API'), ('API', 'Integrate with the GOV.UK Notify API'),