form create product | add product in comanda

This commit is contained in:
2024-12-15 18:53:16 -03:00
parent b74d817730
commit a840781473
17 changed files with 72 additions and 41 deletions

View File

@@ -1,11 +1,9 @@
from django.urls import path, include
from django.urls import path
from . import views
urlpatterns = [
path('', views.products, name='products'),
path('create_product', views.createProduct, name='create_product'),
]