This commit is contained in:
Eden Kirin
2024-04-06 23:32:41 +02:00
parent 5e1989a60f
commit 1b1d0f1b5c
11 changed files with 386 additions and 182 deletions

View File

@ -8,6 +8,7 @@ urlpatterns = [
path("filter-list", views.FilterListView.as_view(), name="filter-list"),
path("form-validation", views.FormValidationView.as_view(), name="form-validation"),
path("complex-form", views.ComplexFormView.as_view(), name="complex-form"),
path("complex-form/handle", views.ComplexFormHandleView.as_view(), name="complex-form-handle"),
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("table-inline-edit", views.TableInlineEditView.as_view(), name="table-inline-edit"),
]