From 57ec16f7a9f4ec09ddfbe5d4573c6fe382e69071 Mon Sep 17 00:00:00 2001 From: Luis Cielak Date: Thu, 26 Jul 2018 12:23:59 -0400 Subject: [PATCH] Change input text to text area --- atst/forms/request.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/atst/forms/request.py b/atst/forms/request.py index bc6f6ad4..f7500094 100644 --- a/atst/forms/request.py +++ b/atst/forms/request.py @@ -14,6 +14,7 @@ class RequestForm(ValidatedForm): "DoD Component", description="Identify the DoD component that is requesting access to the JEDI Cloud", choices=[ + ("null","Select an option"), ("us_air_force","US Air Force"), ("us_army","US Army"), ("us_navy","US Navy"), @@ -21,9 +22,10 @@ class RequestForm(ValidatedForm): ("joint_chiefs_of_staff","Joint Chiefs of Staff")], ) - jedi_usage = StringField( + jedi_usage = TextAreaField( "JEDI Usage", description="Briefly describe how you are expecting to use the JEDI Cloud", + render_kw={"placeholder": "e.g. We are migrating XYZ application to the cloud so that..."}, ) # Details of Use: Cloud Readiness @@ -53,7 +55,7 @@ class RequestForm(ValidatedForm): ) engineering_assessment = RadioField( - "Have you completed an engineering assessment of your software systems for cloud readiness?", + description="Have you completed an engineering assessment of your software systems for cloud readiness?", choices=[("yes", "Yes"), ("no", "No"), ("in_progress","In Progress")], )