Skip to content
This repository has been archived by the owner on Jun 29, 2021. It is now read-only.

usnistgov/core_workspace_app

Repository files navigation

core_workspace_app

core_workspace_app is a Django app providing a way to manage your resources through a dashboard.

Quickstart

  1. Add "core_workspace_app" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
    ...
    'core_workspace_app',
]
  1. Include the core_workspace_app URLconf in your project urls.py like this::
url(r'^workspace/', include('core_workspace_app.urls')),