from django.urls import path from .views import tasklistview, taskview, caseview urlpatterns = [ path('', tasklistview.TaskListView.as_view()), path('', taskview.TaskView.as_view()), path('/edit', taskview.TaskEdit.as_view()), path('/case-file', caseview.CaseView.as_view()), path('/case-file/execute', caseview.CaseExecute.as_view()) ]