2024-07-01 10:19:21 +00:00
|
|
|
from django.urls import path
|
2025-02-04 14:48:47 +00:00
|
|
|
from dashboard import views
|
2024-07-01 10:19:21 +00:00
|
|
|
|
|
|
|
app_name = 'dashboard'
|
|
|
|
|
|
|
|
urlpatterns = [
|
2025-02-04 14:48:47 +00:00
|
|
|
path("", views.UnassignedDevicesView.as_view(), name="unassigned"),
|
2025-02-14 08:11:21 +00:00
|
|
|
path("all", views.AllDevicesView.as_view(), name="all_device"),
|
2024-07-10 11:55:57 +00:00
|
|
|
path("<int:pk>/", views.LotDashboardView.as_view(), name="lot"),
|
2024-10-09 10:18:09 +00:00
|
|
|
path("search", views.SearchView.as_view(), name="search"),
|
2024-07-01 10:19:21 +00:00
|
|
|
]
|