mirror of
https://github.com/logos-co/open-law.git
synced 2025-02-13 15:26:31 +00:00
15 lines
426 B
Python
15 lines
426 B
Python
from flask_wtf import FlaskForm
|
|
from wtforms import StringField
|
|
from wtforms.validators import DataRequired
|
|
|
|
|
|
class ForkBookForm(FlaskForm):
|
|
label = StringField("Fork Label", [DataRequired()])
|
|
about = StringField("Fork About")
|
|
|
|
|
|
class ForkVersionForm(FlaskForm):
|
|
version_id = StringField("Version ID", [DataRequired()])
|
|
label = StringField("Fork Label", [DataRequired()])
|
|
about = StringField("Fork About")
|