mirror of
https://github.com/Sosokker/Inventory-Management-System.git
synced 2025-12-18 23:24:05 +01:00
11 lines
378 B
Python
11 lines
378 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from django.views.generic.base import RedirectView
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
path("accounts/", include("django.contrib.auth.urls")), # new
|
|
path('dashboard/', include('inventory.urls'), name='dashboard'),
|
|
path('', RedirectView.as_view(url='/dashboard/overview/')),
|
|
]
|