12 lines
372 B
Python
12 lines
372 B
Python
from django.urls import path
|
|
from dashboard import views
|
|
|
|
app_name = 'dashboard'
|
|
|
|
urlpatterns = [
|
|
path("", views.UnassignedDevicesView.as_view(), name="unassigned"),
|
|
path("all", views.AllDevicesView.as_view(), name="all_device"),
|
|
path("<int:pk>/", views.LotDashboardView.as_view(), name="lot"),
|
|
path("search", views.SearchView.as_view(), name="search"),
|
|
]
|