Add products in urls and views

This commit is contained in:
cosmos
2024-06-29 09:42:00 -05:00
parent 764d3d8d85
commit 2039a19b16
2 changed files with 23 additions and 1 deletions

View File

@@ -6,4 +6,5 @@ urlpatterns = [
path("", views.index, name="wellcome"),
path("comprar", views.buy, name="buy"),
path("compras", views.purchases, name="purchases"),
path("productos", views.products, name="products"),
]