7 lines
152 B
Python
Executable File
7 lines
152 B
Python
Executable File
from flask_wtf import FlaskForm
|
|
from wtforms import SelectField
|
|
|
|
|
|
class TagsForm(FlaskForm):
|
|
tags = SelectField(choices=[("All tags", "All tags")])
|