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):
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='Cant be empty')]
)
upload_or_api = RadioField(
'Are you uploading a list of contacts that youre 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'),