Skip to content

usnistgov/core_dashboard_app

Repository files navigation

Core Dashboard App

Resource management via a dashboard for the curator core project.

Quickstart

1. Add "core_dashboard_app" to your INSTALLED_APPS setting

INSTALLED_APPS = [
    ...
    'core_dashboard_app',
]

2. Include the core_dashboard_app URLconf in your project urls.py

url(r'^dashboard/', include('core_dashboard_app.urls')),