mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-01 11:52:20 +00:00
Moves landing views into directory
This commit is contained in:
parent
86824ff1cb
commit
290039ac66
6 changed files with 8 additions and 6 deletions
|
@ -32,6 +32,12 @@ from .books.books import Book, upload_cover, add_description, resolve_book
|
||||||
from .books.edit_book import EditBook, ConfirmEditBook
|
from .books.edit_book import EditBook, ConfirmEditBook
|
||||||
from .books.editions import Editions, switch_edition
|
from .books.editions import Editions, switch_edition
|
||||||
|
|
||||||
|
# landing
|
||||||
|
from .landing.landing import About, Home, Landing
|
||||||
|
from .landing.login import Login, Logout
|
||||||
|
from .landing.register import Register, ConfirmEmail, ConfirmEmailCode, resend_link
|
||||||
|
from .landing.password import PasswordResetRequest, PasswordReset
|
||||||
|
|
||||||
# misc views
|
# misc views
|
||||||
from .author import Author, EditAuthor
|
from .author import Author, EditAuthor
|
||||||
from .directory import Directory
|
from .directory import Directory
|
||||||
|
@ -45,17 +51,13 @@ from .import_data import Import, ImportStatus
|
||||||
from .inbox import Inbox
|
from .inbox import Inbox
|
||||||
from .interaction import Favorite, Unfavorite, Boost, Unboost
|
from .interaction import Favorite, Unfavorite, Boost, Unboost
|
||||||
from .isbn import Isbn
|
from .isbn import Isbn
|
||||||
from .landing import About, Home, Landing
|
|
||||||
from .list import Lists, SavedLists, List, Curate, UserLists
|
from .list import Lists, SavedLists, List, Curate, UserLists
|
||||||
from .list import save_list, unsave_list, delete_list
|
from .list import save_list, unsave_list, delete_list
|
||||||
from .login import Login, Logout
|
|
||||||
from .notifications import Notifications
|
from .notifications import Notifications
|
||||||
from .outbox import Outbox
|
from .outbox import Outbox
|
||||||
from .reading import create_readthrough, delete_readthrough, delete_progressupdate
|
from .reading import create_readthrough, delete_readthrough, delete_progressupdate
|
||||||
from .reading import ReadingStatus
|
from .reading import ReadingStatus
|
||||||
from .register import Register, ConfirmEmail, ConfirmEmailCode, resend_link
|
|
||||||
from .rss_feed import RssFeed
|
from .rss_feed import RssFeed
|
||||||
from .password import PasswordResetRequest, PasswordReset
|
|
||||||
from .search import Search
|
from .search import Search
|
||||||
from .shelf import Shelf
|
from .shelf import Shelf
|
||||||
from .shelf import create_shelf, delete_shelf
|
from .shelf import create_shelf, delete_shelf
|
||||||
|
|
0
bookwyrm/views/landing/__init__.py
Normal file
0
bookwyrm/views/landing/__init__.py
Normal file
|
@ -3,8 +3,8 @@ from django.template.response import TemplateResponse
|
||||||
from django.views import View
|
from django.views import View
|
||||||
|
|
||||||
from bookwyrm import forms
|
from bookwyrm import forms
|
||||||
from .feed import Feed
|
from bookwyrm.views import helpers
|
||||||
from . import helpers
|
from bookwyrm.views.feed import Feed
|
||||||
|
|
||||||
|
|
||||||
# pylint: disable= no-self-use
|
# pylint: disable= no-self-use
|
Loading…
Reference in a new issue