2023-04-20 16:10:16 +03:00
|
|
|
# flake8: noqa F401
|
|
|
|
from .auth import LoginForm
|
2023-05-15 12:14:49 +03:00
|
|
|
from .user import UserForm, NewUserForm, EditUserForm, ReactivateUserForm
|
2023-05-01 18:17:46 +03:00
|
|
|
from .book import CreateBookForm, EditBookForm
|
2023-04-26 16:14:57 +03:00
|
|
|
from .contributor import (
|
2023-04-25 12:39:26 +03:00
|
|
|
AddContributorForm,
|
|
|
|
DeleteContributorForm,
|
|
|
|
EditContributorRoleForm,
|
|
|
|
)
|
2023-04-26 16:14:57 +03:00
|
|
|
from .collection import CreateCollectionForm, EditCollectionForm
|
2023-05-02 17:07:37 +03:00
|
|
|
from .section import CreateSectionForm, EditSectionForm
|
2023-05-04 16:32:56 +03:00
|
|
|
from .interpretation import CreateInterpretationForm, EditInterpretationForm
|
2023-05-08 15:19:22 +03:00
|
|
|
from .comment import CreateCommentForm
|
2023-05-09 17:56:29 +03:00
|
|
|
from .vote import VoteForm
|
2023-05-09 17:32:07 +03:00
|
|
|
from .comment import CreateCommentForm, DeleteCommentForm, EditCommentForm
|