Route and markup for adding internal comments
This commit is contained in:
8
atst/forms/internal_comment.py
Normal file
8
atst/forms/internal_comment.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from wtforms.fields import TextAreaField
|
||||
from wtforms.validators import Optional
|
||||
|
||||
from .forms import ValidatedForm
|
||||
|
||||
|
||||
class InternalCommentForm(ValidatedForm):
|
||||
text = TextAreaField(validators=[Optional()])
|
Reference in New Issue
Block a user