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
|
from flask_wtf import FlaskForm
|
||
7 months ago
|
from wtforms import SelectField, SubmitField
|
||
3 years ago
|
|
||
|
|
||
|
class SelectorForm(FlaskForm):
|
||
6 months ago
|
distribusis = SelectField("Your existing distribusi:")
|
||
3 years ago
|
|
||
6 months ago
|
new = SubmitField("new")
|
||
3 years ago
|
|
||
6 months ago
|
update = SubmitField("update")
|
||
3 years ago
|
|
||
6 months ago
|
describe = SubmitField("describe")
|
||
6 months ago
|
|
||
6 months ago
|
delete = SubmitField("delete")
|