Created
April 14, 2017 15:24
-
-
Save kergalym/d101b979b49b401e6e0dbf96afa749d6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask_wtf import Form | |
from wtforms import TextField, BooleanField, SubmitField | |
from wtforms.validators import DataRequired | |
class DashboardItemsForm(Form): | |
item_chb = BooleanField('item_chb', validators=[DataRequired()]) | |
delid = TextField('delid', validators=[DataRequired()]) | |
rename = SubmitField('rename') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment