Formatting

This commit is contained in:
leigh-mil 2018-10-23 17:21:46 -04:00
parent d474091f5e
commit 6fdc883a8c

View File

@ -11,9 +11,7 @@ class CCPOReviewForm(ValidatedForm):
"Instructions or comments", "Instructions or comments",
description="Provide instructions or notes for additional information that is necessary to approve the request here. The requestor may then re-submit the updated request or initiate contact outside of AT-AT if further discussion is required. <strong>This message will be shared with the person making the JEDI request.</strong>.", description="Provide instructions or notes for additional information that is necessary to approve the request here. The requestor may then re-submit the updated request or initiate contact outside of AT-AT if further discussion is required. <strong>This message will be shared with the person making the JEDI request.</strong>.",
) )
fname_mao = StringField( fname_mao = StringField("First Name (optional)", validators=[Optional(), Name()])
"First Name (optional)", validators=[Optional(), Name()]
)
lname_mao = StringField("Last Name (optional)", validators=[Optional(), Name()]) lname_mao = StringField("Last Name (optional)", validators=[Optional(), Name()])
email_mao = EmailField( email_mao = EmailField(
"Mission Owner e-mail (optional)", validators=[Optional(), Email()] "Mission Owner e-mail (optional)", validators=[Optional(), Email()]
@ -21,9 +19,5 @@ class CCPOReviewForm(ValidatedForm):
phone_mao = TelField( phone_mao = TelField(
"Mission Owner phone number (optional)", validators=[Optional(), PhoneNumber()] "Mission Owner phone number (optional)", validators=[Optional(), PhoneNumber()]
) )
fname_ccpo = StringField( fname_ccpo = StringField("First Name (optional)", validators=[Optional(), Name()])
"First Name (optional)", validators=[Optional(), Name()] lname_ccpo = StringField("Last Name (optional)", validators=[Optional(), Name()])
)
lname_ccpo = StringField(
"Last Name (optional)", validators=[Optional(), Name()]
)