Files
atst/atst/forms/internal_comment.py
2018-09-25 09:45:34 -04:00

14 lines
477 B
Python

from wtforms.fields import TextAreaField
from wtforms.validators import InputRequired
from .forms import ValidatedForm
class InternalCommentForm(ValidatedForm):
text = TextAreaField(
"CCPO Internal Notes",
default="",
description="Add comments or notes for internal CCPO reference and follow-up here.<strong>These comments <em>will not</em> be visible to the person making the JEDI request.</strong>",
validators=[InputRequired()],
)