mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 19:36:56 -08:00
15 lines
583 B
Python
15 lines
583 B
Python
|
from flask import request
|
||
|
from flask_login import current_user
|
||
|
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
|
||
|
|
||
|
from app import db
|
||
|
|
||
|
|
||
|
class ChooseTopicsForm(FlaskForm):
|
||
|
chosen_topics = MultiCheckboxField(_l('Choose some topics you are interested in'), coerce=int)
|
||
|
submit = SubmitField(_l('Choose'))
|