2020-02-08 17:05:48 -05:00

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")])