open-law/app/forms/__init__.py

14 lines
531 B
Python

# flake8: noqa F401
from .auth import LoginForm
from .user import UserForm, NewUserForm, EditUserForm
from .book import CreateBookForm, EditBookForm
from .contributor import (
AddContributorForm,
DeleteContributorForm,
EditContributorRoleForm,
)
from .collection import CreateCollectionForm, EditCollectionForm
from .section import CreateSectionForm, EditSectionForm
from .interpretation import CreateInterpretationForm, EditInterpretationForm
from .comment import CreateCommentForm, DeleteCommentForm, EditCommentForm