2024-01-28 18:11:32 +13:00
|
|
|
from flask_wtf import FlaskForm
|
|
|
|
from wtforms import StringField, SubmitField, TextAreaField, BooleanField, HiddenField, SelectField, FileField
|
|
|
|
from wtforms.validators import ValidationError, DataRequired, Email, EqualTo, Length, Optional
|
|
|
|
from flask_babel import _, lazy_gettext as _l
|
|
|
|
from app.utils import MultiCheckboxField
|
|
|
|
|
|
|
|
|
|
|
|
class ChooseTopicsForm(FlaskForm):
|
|
|
|
chosen_topics = MultiCheckboxField(_l('Choose some topics you are interested in'), coerce=int)
|
|
|
|
submit = SubmitField(_l('Choose'))
|
2024-08-06 16:25:27 -04:00
|
|
|
|
2024-08-08 19:26:07 +12:00
|
|
|
|
2024-08-06 16:25:27 -04:00
|
|
|
class SuggestTopicsForm(FlaskForm):
|
2024-08-08 19:26:07 +12:00
|
|
|
topic_name = TextAreaField(_l('New topic name'), validators=[DataRequired(), Length(min=1, max=100)],
|
|
|
|
render_kw={'placeholder': _l('New topic name here...')})
|
|
|
|
communities_for_topic = TextAreaField(_l('Suggested communities'), validators=[Optional(), Length(max=5000)],
|
|
|
|
render_kw={'placeholder': _l('Comma seperated list of community suggestions')})
|
2024-08-06 16:25:27 -04:00
|
|
|
submit = SubmitField(_l('Submit'))
|