Add qoute step.
This commit is contained in:
parent
b71ea45681
commit
6ff4740d04
30 changed files with 3362 additions and 376 deletions
|
@ -4,9 +4,21 @@ from . import views
|
|||
app_name = 'processes'
|
||||
|
||||
urlpatterns = [
|
||||
# Requests UI
|
||||
path('requests/', views.request_list, name='request_list'),
|
||||
path('requests/create/', views.create_request_with_entities, name='create_request_with_entities'),
|
||||
path('requests/lookup/well/', views.lookup_well_by_subscription, name='lookup_well_by_subscription'),
|
||||
path('requests/lookup/representative/', views.lookup_representative_by_national_code, name='lookup_representative_by_national_code'),
|
||||
path('requests/<int:instance_id>/delete/', views.delete_request, name='delete_request'),
|
||||
|
||||
# New step-based architecture
|
||||
path('instance/<int:instance_id>/steps/', views.instance_steps, name='instance_steps'),
|
||||
path('instance/<int:instance_id>/step/<int:step_id>/', views.step_detail, name='step_detail'),
|
||||
|
||||
# Legacy process views
|
||||
path('', views.process_list, name='process_list'),
|
||||
path('<int:process_id>/', views.process_detail, name='process_detail'),
|
||||
path('<int:process_id>/start/', views.start_process, name='start_process'),
|
||||
path('instance/<int:instance_id>/', views.instance_detail, name='instance_detail'),
|
||||
path('my-processes/', views.my_processes, name='my_processes'),
|
||||
]
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue