first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:27:56 +03:00
commit d9f1ea341e
1021 changed files with 70645 additions and 0 deletions

11
cart/urls.py Normal file
View File

@@ -0,0 +1,11 @@
from django.urls import path
from . import views
app_name = 'cart'
urlpatterns = [
path('', views.CartDetailView.as_view(), name='cart_detail'),
path('add/', views.CartAddView.as_view(), name='cart_add'),
path('remove/<int:product_id>/', views.CartRemoveView.as_view(), name='cart_remove'),
path('clear/', views.CartClearView.as_view(), name='cart_clear'),
]