open-law/app/forms/comment.py

14 lines
419 B
Python
Raw Normal View History

2023-05-08 12:19:22 +00:00
from flask_wtf import FlaskForm
from wtforms import StringField, SubmitField, BooleanField
from wtforms.validators import DataRequired, Length
class BaseCommentForm(FlaskForm):
text = StringField("Text", [DataRequired(), Length(3, 256)])
marked = BooleanField("Marked")
included_with_interpretation = BooleanField("Included")
class CreateCommentForm(BaseCommentForm):
submit = SubmitField("Create")