Warehouse management

This commit is contained in:
Eden Kirin
2024-04-07 00:07:47 +02:00
parent 1b1d0f1b5c
commit b33ed21949
9 changed files with 170 additions and 24 deletions

View File

@ -10,5 +10,6 @@ urlpatterns = [
path("complex-form", views.ComplexFormView.as_view(), name="complex-form"),
path("complex-form/handle/route-module", views.RouteModuleHandleView.as_view(), name="complex-form-handle-route-module"),
path("complex-form/handle/reports", views.ReportsHandleView.as_view(), name="complex-form-handle-reports"),
path("complex-form/handle/warehouse-management", views.WarehouseManagementHandleView.as_view(), name="complex-form-handle-warehouse-management"),
path("table-inline-edit", views.TableInlineEditView.as_view(), name="table-inline-edit"),
]