9 lines
160 B
Python
9 lines
160 B
Python
|
from django.contrib import admin
|
||
|
from django.urls import path
|
||
|
|
||
|
from dashboard import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('', views.index,name='dashboard-index'),
|
||
|
]
|