10 lines
288 B
Python
10 lines
288 B
Python
# from django.contrib import admin
|
|
from django.urls import include, path
|
|
from apps.dashboard import views as list_views
|
|
|
|
urlpatterns = [
|
|
# path('admin/', admin.site.urls),
|
|
path('', list_views.home_page, name='home'),
|
|
path('apps/dashboard/', include('apps.dashboard.urls')),
|
|
]
|