from django.urls import path from . import views urlpatterns = [ path('', views.DashboardView.as_view(), name='netscan-dashboard'), path('profile/new/', views.ProfileCreateView.as_view(), name='netscan-profile-create'), path('profile//edit/', views.ProfileUpdateView.as_view(), name='netscan-profile-edit'), path('profile//delete/', views.ProfileDeleteView.as_view(), name='netscan-profile-delete'), path('profile//runs/', views.ScanRunListView.as_view(), name='netscan-run-list'), path('profile//trigger/', views.TriggerScanView.as_view(), name='netscan-trigger'), path('profile//test-telegram/', views.TestTelegramView.as_view(), name='netscan-test-telegram'), path('detect-network/', views.DetectNetworkView.as_view(), name='netscan-detect-network'), path('run//', views.ScanRunDetailView.as_view(), name='netscan-run-detail'), ]