You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
311 B
15 lines
311 B
3 years ago
|
"""Form object declaration."""
|
||
7 months ago
|
|
||
3 years ago
|
from flask_wtf import FlaskForm
|
||
7 months ago
|
from wtforms import RadioField, SubmitField
|
||
3 years ago
|
|
||
|
|
||
|
class PublicThemeForm(FlaskForm):
|
||
6 months ago
|
"""PublicTheme selection form."""
|
||
3 years ago
|
|
||
6 months ago
|
publicthemes = RadioField(
|
||
|
"Public themes from other distribusi-verse users:"
|
||
|
)
|
||
3 years ago
|
|
||
6 months ago
|
save = SubmitField("Save")
|