Adds manual review view

This commit is contained in:
Mouse Reeve
2021-11-12 16:23:56 -08:00
parent 9bff27e61f
commit 221cde9be4
7 changed files with 132 additions and 3 deletions

View File

@ -10,7 +10,11 @@ from django.utils.translation import gettext_lazy as _
from django.views import View
from bookwyrm import forms, models
from bookwyrm.importers import LibrarythingImporter, GoodreadsImporter, StorygraphImporter
from bookwyrm.importers import (
LibrarythingImporter,
GoodreadsImporter,
StorygraphImporter,
)
# pylint: disable= no-self-use
@method_decorator(login_required, name="dispatch")