Update tooltip and validation requirements

This commit is contained in:
luis cielak 2018-08-17 13:39:03 -04:00 committed by richard-dds
parent b41cfa0955
commit c5a52bf46f
2 changed files with 5 additions and 5 deletions

View File

@ -89,7 +89,7 @@ class FinancialForm(ValidatedForm):
treasury_code = StringField("Program Treasury Code", validators=[Required(), Regexp(TREASURY_CODE_REGEX)])
ba_code = StringField("Program BA Code", validators=[Required(), Regexp(BA_CODE_REGEX)])
ba_code = StringField("Program Budget Activity (BA) Code", validators=[Required(), Regexp(BA_CODE_REGEX)])
fname_co = StringField("Contracting Officer First Name", validators=[Required()])
lname_co = StringField("Contracting Officer Last Name", validators=[Required()])

View File

@ -64,7 +64,7 @@ class RequestForm(ValidatedForm):
rationalization_software_systems = RadioField(
description="Have you completed a “rationalization” of your software systems to move to the cloud?",
choices=[("yes", "Yes"), ("no", "No"), ("in_progress", "In Progress")],
choices=[("yes", "Yes"), ("no", "No"), ("In Progress", "In Progress")],
default="",
)
@ -87,14 +87,14 @@ class RequestForm(ValidatedForm):
engineering_assessment = RadioField(
description="Have you completed an engineering assessment of your systems for cloud readiness?",
choices=[("yes", "Yes"), ("no", "No"), ("in_progress", "In Progress")],
choices=[("yes", "Yes"), ("no", "No"), ("In Progress", "In Progress")],
default="",
)
data_transfers = SelectField(
description="How much data is being transferred to the cloud?",
choices=[
("null", "Select an option"),
("", "Select an option"),
("Less than 100GB", "Less than 100GB"),
("100GB-500GB", "100GB-500GB"),
("500GB-1TB", "500GB-1TB"),
@ -111,7 +111,7 @@ class RequestForm(ValidatedForm):
expected_completion_date = SelectField(
description="When do you expect to complete your migration to the JEDI Cloud?",
choices=[
("null", "Select an option"),
("", "Select an option"),
("Less than 1 month", "Less than 1 month"),
("1-3 months", "1-3 months"),
("3-6 months", "3-6 months"),