mirror of https://github.com/logos-co/open-law.git
7 lines
134 B
Python
7 lines
134 B
Python
|
from flask_wtf import FlaskForm
|
||
|
from wtforms import BooleanField
|
||
|
|
||
|
|
||
|
class VoteForm(FlaskForm):
|
||
|
positive = BooleanField("Positive")
|