Update tooltips

This commit is contained in:
luis cielak 2018-08-16 10:44:42 -04:00 committed by richard-dds
parent 12668cd987
commit 7471d062e1
2 changed files with 16 additions and 17 deletions

View File

@ -62,11 +62,11 @@ class FinancialForm(ValidatedForm):
return valid return valid
task_order_id = StringField( task_order_id = StringField(
"Task Order Number associated with this request.", validators=[Required()] "Task Order Number associated with this request", validators=[Required()]
) )
uii_ids = NewlineListField( uii_ids = NewlineListField(
"Unique Item Identifier (UII)s related to your application(s) if you already have them." "Unique Item Identifier (UII)s related to your application(s) if you already have them"
) )
pe_id = StringField("Program Element (PE) Number related to your request", validators=[Required()]) pe_id = StringField("Program Element (PE) Number related to your request", validators=[Required()])
@ -106,8 +106,7 @@ class FinancialForm(ValidatedForm):
("OM", "Operations & Maintenance (O&M)"), ("OM", "Operations & Maintenance (O&M)"),
("PROC", "Procurement (PROC)"), ("PROC", "Procurement (PROC)"),
("OTHER", "Other"), ("OTHER", "Other"),
], ]
validators=[Required()]
) )
funding_type_other = StringField( funding_type_other = StringField(
@ -117,29 +116,35 @@ class FinancialForm(ValidatedForm):
clin_0001 = StringField( clin_0001 = StringField(
"<dl><dt>CLIN 0001</dt> - <dd>Unclassified IaaS and PaaS Amount</dd></dl>", "<dl><dt>CLIN 0001</dt> - <dd>Unclassified IaaS and PaaS Amount</dd></dl>",
validators=[Required()], validators=[Required()],
description="Review your task order document, the amounts for each CLIN must match exactly here"
) )
clin_0003 = StringField( clin_0003 = StringField(
"<dl><dt>CLIN 0003</dt> - <dd>Unclassified Cloud Support Package</dd></dl>", "<dl><dt>CLIN 0003</dt> - <dd>Unclassified Cloud Support Package</dd></dl>",
validators=[Required()], validators=[Required()],
description="Review your task order document, the amounts for each CLIN must match exactly here"
) )
clin_1001 = StringField( clin_1001 = StringField(
"<dl><dt>CLIN 1001</dt> - <dd>Unclassified IaaS and PaaS Amount <br> OPTION PERIOD 1</dd></dl>", "<dl><dt>CLIN 1001</dt> - <dd>Unclassified IaaS and PaaS Amount <br> OPTION PERIOD 1</dd></dl>",
validators=[Required()], validators=[Required()],
description="Review your task order document, the amounts for each CLIN must match exactly here"
) )
clin_1003 = StringField( clin_1003 = StringField(
"<dl><dt>CLIN 1003</dt> - <dd>Unclassified Cloud Support Package <br> OPTION PERIOD 1</dd></dl>", "<dl><dt>CLIN 1003</dt> - <dd>Unclassified Cloud Support Package <br> OPTION PERIOD 1</dd></dl>",
validators=[Required()], validators=[Required()],
description="Review your task order document, the amounts for each CLIN must match exactly here"
) )
clin_2001 = StringField( clin_2001 = StringField(
"<dl><dt>CLIN 2001</dt> - <dd>Unclassified IaaS and PaaS Amount <br> OPTION PERIOD 2</dd></dl>", "<dl><dt>CLIN 2001</dt> - <dd>Unclassified IaaS and PaaS Amount <br> OPTION PERIOD 2</dd></dl>",
validators=[Required()], validators=[Required()],
description="Review your task order document, the amounts for each CLIN must match exactly here"
) )
clin_2003 = StringField( clin_2003 = StringField(
"<dl><dt>CLIN 2003</dt> - <dd>Unclassified Cloud Support Package <br> OPTION PERIOD 2</dd></dl>", "<dl><dt>CLIN 2003</dt> - <dd>Unclassified Cloud Support Package <br> OPTION PERIOD 2</dd></dl>",
validators=[Required()], validators=[Required()],
description="Review your task order document, the amounts for each CLIN must match exactly here"
) )

View File

@ -106,7 +106,7 @@
) }} ) }}
{{ OptionsInput( {{ OptionsInput(
f.funding_type, f.funding_type
) }} ) }}
{{ TextInput( {{ TextInput(
@ -115,37 +115,31 @@
{{ TextInput( {{ TextInput(
f.clin_0001,placeholder="50,000", f.clin_0001,placeholder="50,000",
validation='integer', validation='integer'
tooltip="Review your task order document, the amounts for each CLIN must match exactly here."
) }} ) }}
{{ TextInput( {{ TextInput(
f.clin_0003,placeholder="13,000", f.clin_0003,placeholder="13,000",
validation='integer', validation='integer'
tooltip="Review your task order document, the amounts for each CLIN must match exactly here."
) }} ) }}
{{ TextInput( {{ TextInput(
f.clin_1001,placeholder="30,000", f.clin_1001,placeholder="30,000",
validation='integer', validation='integer'
tooltip="Review your task order document, the amounts for each CLIN must match exactly here."
) }} ) }}
{{ TextInput( {{ TextInput(
f.clin_1003,placeholder="7,000", f.clin_1003,placeholder="7,000",
validation='integer', validation='integer'
tooltip="Review your task order document, the amounts for each CLIN must match exactly here."
) }} ) }}
{{ TextInput( {{ TextInput(
f.clin_2001,placeholder="30,000", f.clin_2001,placeholder="30,000",
validation='integer', validation='integer'
tooltip="Review your task order document, the amounts for each CLIN must match exactly here."
) }} ) }}
{{ TextInput(f.clin_2003,placeholder="7,000", {{ TextInput(f.clin_2003,placeholder="7,000",
validation='integer', validation='integer'
tooltip="Review your task order document, the amounts for each CLIN must match exactly here."
) }} ) }}