core_workspace_app is a Django app providing a way to manage your resources through a dashboard.
- Add "core_workspace_app" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
...
'core_workspace_app',
]- Include the core_workspace_app URLconf in your project urls.py like this::
url(r'^workspace/', include('core_workspace_app.urls')),