You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
544 B
Python

from django.urls import include, path
from containers.views import ContainerReceive, ContainerExpedition, ContainerSearchView, ContainersListView
urlpatterns = [
path('search', ContainerSearchView.as_view(), name='container_search'),
path('employee_containers', ContainersListView.as_view(), name='employee_containers'),
path('<int:pk>/', include([
path('receive', ContainerReceive.as_view(), name='container_receive'),
path('expedition', ContainerExpedition.as_view(), name='container_expedition'),
])),
]