14 lines
477 B
Python
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()],
|
|
)
|