Add label and description to internal notes field

This commit is contained in:
Andrew Croce 2018-09-13 12:44:21 -04:00 committed by dandds
parent bd0cf00a40
commit d476124762

View File

@ -5,4 +5,8 @@ from .forms import ValidatedForm
class InternalCommentForm(ValidatedForm):
text = TextAreaField(validators=[Optional()])
text = TextAreaField(
"CCPO Internal Notes",
description="You may add additional comments and notes for internal CCPO reference and follow-up here.",
validators=[Optional()],
)