feat: added new settings and styling

This commit is contained in:
2024-12-05 21:14:57 +01:00
parent 313fb0cb3b
commit eb425cc0a6
9 changed files with 250 additions and 18 deletions
+3
View File
@@ -7,6 +7,7 @@ from web.views.web import (
cart_detail,
delete_cart_item,
index,
manifest,
product_detail,
)
@@ -28,4 +29,6 @@ urlpatterns = [
# api
path("web/add-cart-item/", add_cart_item, name="add_cart_item"),
path("web/delete-cart-item/<int:pk>/", delete_cart_item, name="delete_cart_item"),
# manifest
path("manifest.json", manifest, name="manifest_json"),
]