Our designers find it helpful to be able to stub out simple views that aren't ready to be seen for production yet, and check them into version control so that other people can see them and provide feedback. This commit introduces a few new files and directories for this purpose, as well as a sample view that will only be seen in dev mode, and never in production.
22 lines
493 B
Python
22 lines
493 B
Python
# pylint: disable=W0401, W0511
|
|
|
|
"All view functions for contentstore, broken out into submodules"
|
|
|
|
# Disable warnings about import from wildcard
|
|
# All files below declare exports with __all__
|
|
from .assets import *
|
|
from .checklist import *
|
|
from .component import *
|
|
from .course import *
|
|
from .error import *
|
|
from .item import *
|
|
from .preview import *
|
|
from .public import *
|
|
from .user import *
|
|
from .tabs import *
|
|
from .requests import *
|
|
try:
|
|
from .dev import *
|
|
except ImportError:
|
|
pass
|