Urls

URL configuration for the dashboard application.

This module is the top-level URL router for the smarter.apps.dashboard application. It includes the URL configurations from each dashboard sub-application and mounts them at the paths listed below.

smarter.apps.dashboard.urls.app_name

The Django application namespace, taken from smarter.apps.dashboard.const.namespace.

Type:

str

Example

Include these URLs from the project-level URL configuration:

from django.urls import include, path

urlpatterns = [
    path("dashboard/", include("smarter.apps.dashboard.urls")),
]