""" Dashboard URLs """ from django.urls import path from .views import CommandCenterView app_name = 'dashboard' urlpatterns = [ path('', CommandCenterView.as_view(), name='command-center'), ]