feat: edit product

This commit is contained in:
2024-12-30 10:46:16 -03:00
parent 9cc0c72f10
commit c9f7b33fde
7 changed files with 66 additions and 12 deletions

View File

@@ -6,5 +6,6 @@ urlpatterns = [
path('', views.products, name='products'),
path('create_product', views.createProduct, name='create_product'),
path('onOffproduct', views.onOffProduct, name='onOffproduct'),
path('editProduct/<int:productId>/', views.editProduct, name='editProduct'),
]