38824-vm/core/urls.py
2026-02-28 01:38:24 +00:00

7 lines
223 B
Python

from django.urls import path
from .views import DashboardView, ScanDetailView
urlpatterns = [
path('', DashboardView.as_view(), name='index'),
path('scan/<int:pk>/', ScanDetailView.as_view(), name='scan_detail'),
]