10 lines
171 B
Python
10 lines
171 B
Python
|
from .views import DashboardView
|
||
|
|
||
|
from django.urls import path, include
|
||
|
|
||
|
app_name = "frontend"
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('', DashboardView.as_view(), name="dashboard"),
|
||
|
]
|