Add few cosmetic changes to the request form, made some updates to form verbiage

This commit is contained in:
Luis Cielak
2018-07-10 11:19:59 -04:00
parent a0f5ac3588
commit 1c360784b2
8 changed files with 24 additions and 21 deletions

View File

@@ -59,29 +59,29 @@ class FinancialForm(Form):
)
clin_0001 = StringField(
"CLIN 0001 - Unclassified IaaS and PaaS Amount", validators=[Required()]
"<b>CLIN 0001</b> - Unclassified IaaS and PaaS Amount", validators=[Required()]
)
clin_0003 = StringField(
"CLIN 0003 - Unclassified Cloud Support Package", validators=[Required()]
"<b>CLIN 0003</b> - Unclassified Cloud Support Package", validators=[Required()]
)
clin_1001 = StringField(
"CLIN 1001 - Unclassified IaaS and PaaS Amount OPTION PERIOD 1",
"<b>CLIN 1001</b> - Unclassified IaaS and PaaS Amount <br> OPTION PERIOD 1",
validators=[Required()],
)
clin_1003 = StringField(
"CLIN 1003 - Unclassified Cloud Support Package OPTION PERIOD 1",
"<b>CLIN 1003</b> - Unclassified Cloud Support Package <br> OPTION PERIOD 1",
validators=[Required()],
)
clin_2001 = StringField(
"CLIN 2001 - Unclassified IaaS and PaaS Amount OPTION PERIOD 2",
"<b>CLIN 2001</b> - Unclassified IaaS and PaaS Amount <br> OPTION PERIOD 2",
validators=[Required()],
)
clin_2003 = StringField(
"CLIN 2003 - Unclassified Cloud Support Package OPTION PERIOD 2",
"<b>CLIN 2003</b> - Unclassified Cloud Support Package <br> OPTION PERIOD 2",
validators=[Required()],
)

View File

@@ -16,7 +16,7 @@ class RequestForm(Form):
)
num_applications = IntegerField(
"Please estimate the number of applications that might be supported by this request",
"Estimate the number of applications that might be supported by this request",
validators=[InputRequired(), NumberRange(min=1)],
)
@@ -32,7 +32,7 @@ class RequestForm(Form):
)
app_description = TextAreaField(
"Please briefly describe how your team is expecting to use the JEDI Cloud"
"Describe how your team is expecting to use the JEDI Cloud"
)
supported_organizations = StringField(
@@ -70,11 +70,6 @@ class RequestForm(Form):
validators=[InputRequired()],
)
supporting_organization = TextAreaField(
"Please describe the organizations that are supporting you, include both government and contractor resources",
validators=[InputRequired()],
)
has_migration_office = RadioField(
"Do you have a migration office that you're working with to migrate to the cloud?",
choices=[("yes", "Yes"), ("no", "No")],
@@ -82,6 +77,6 @@ class RequestForm(Form):
)
supporting_organization = StringField(
"Please describe the organizations that are supporting you, include both government and contractor resources.",
"Describe the organizations that are supporting you, include both government and contractor resources",
validators=[InputRequired()],
)