11 lines
374 B
Python
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'),
|
|
]
|