moviewyrm/bookwyrm/views/__init__.py

6 lines
268 B
Python
Raw Normal View History

2021-01-12 16:08:43 +00:00
''' make sure all our nice views are available '''
from .authentication import Login, Register, Logout
from .password import PasswordResetRequest, PasswordReset, ChangePassword
2021-01-12 18:19:58 +00:00
from .invite import ManageInvites, Invite
2021-01-12 18:44:17 +00:00
from .landing import About, Home, Feed, Discover