Remove "POC" from workspace owner form field labels
This commit is contained in:
parent
a916633943
commit
53ff951913
@ -6,11 +6,11 @@ from .validators import IsNumber
|
|||||||
|
|
||||||
|
|
||||||
class POCForm(ValidatedForm):
|
class POCForm(ValidatedForm):
|
||||||
fname_poc = StringField("POC First Name", validators=[Required()])
|
fname_poc = StringField("First Name", validators=[Required()])
|
||||||
|
|
||||||
lname_poc = StringField("POC Last Name", validators=[Required()])
|
lname_poc = StringField("Last Name", validators=[Required()])
|
||||||
|
|
||||||
email_poc = EmailField("POC Email Address", validators=[Required(), Email()])
|
email_poc = EmailField("Email Address", validators=[Required(), Email()])
|
||||||
|
|
||||||
dodid_poc = StringField(
|
dodid_poc = StringField(
|
||||||
"DOD ID", validators=[Required(), Length(min=10), IsNumber()]
|
"DOD ID", validators=[Required(), Length(min=10), IsNumber()]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user