mirror of https://github.com/logos-co/open-law.git
14 lines
419 B
Python
14 lines
419 B
Python
|
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")
|