devicehub-django/dashboard/urls.py

10 lines
231 B
Python
Raw Permalink Normal View History

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-14 08:11:21 +00:00
path("all", views.AllDevicesView.as_view(), name="all_device"),
2024-10-09 10:18:09 +00:00
path("search", views.SearchView.as_view(), name="search"),
2024-07-01 10:19:21 +00:00
]