Remove "POC" from workspace owner form field labels

This commit is contained in:
Patrick Smith 2018-08-13 15:52:14 -04:00
parent a916633943
commit 53ff951913

View File

@ -6,11 +6,11 @@ from .validators import IsNumber
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(
"DOD ID", validators=[Required(), Length(min=10), IsNumber()]