from django.urls import path from .views import Dashboard app_name = "dashboard" urlpatterns = [ path("", Dashboard.as_view(), name="dashboard"), ]