From 7c74864dfe64c9e2266241ff7e8704ca0b768483 Mon Sep 17 00:00:00 2001 From: Pete Herlihy Date: Mon, 24 Oct 2016 12:45:45 +0100 Subject: [PATCH] Added request to go live form elements --- app/main/forms.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app/main/forms.py b/app/main/forms.py index c85d58b6e..5c3d07e58 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -346,10 +346,11 @@ class Feedback(Form): class RequestToGoLiveForm(Form): - usage = TextAreaField( - '', - validators=[DataRequired(message="Can’t be empty")] - ) + channel = Stringfield('Are you sending emails or text messages or both?') + start_date = Stringfield('When will you be ready to start sending messages?') + start_volume = Stringfield('How many messages do you expect to send per month to start with? Give an estimate in numbers.') + peak_volume = Stringfield('Will the number of messages a month increase and when will that start? Give an estimate.') + upload_or_api = Stringfield('Are you uploading a list of contacts that you’re sending your message to, or are you integrating your system with ours?') class ProviderForm(Form):