38265-vm/core/urls.py
2026-02-07 11:00:38 +00:00

11 lines
374 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('analyze/', views.analyze, name='analyze'),
path('history/', views.history, name='history'),
path('task/<uuid:task_id>/', views.task_detail, name='task_detail'),
path('export/<uuid:task_id>/<str:format>/', views.export_task, name='export_task'),
]