11 lines
313 B
Python
11 lines
313 B
Python
from django.urls import path
|
|
from dashboard import views
|
|
|
|
app_name = 'dashboard'
|
|
|
|
urlpatterns = [
|
|
path("", views.UnassignedDevicesView.as_view(), name="unassigned_devices"),
|
|
path("<int:pk>/", views.LotDashboardView.as_view(), name="lot"),
|
|
path("search", views.SearchView.as_view(), name="search"),
|
|
]
|