from django.urls import path from . import views from .views import CancelView, SuccessView app_name = "payments" urlpatterns = [ path("checkout/", views.checkout, name="checkout"), path("cart/", views.cart_detail, name="cart_detail"), path("success/", SuccessView.as_view(), name="success"), path("cancel/", CancelView.as_view(), name="cancel"), path( "create-checkout-session//", views.CreateCheckoutSessionView.as_view(), name="create-checkout-session", ), path("add-to-card/", views.add_to_cart, name="add_to_cart"), path("landing/", views.ProductLandingPageView.as_view(), name="landing"), # path("webhook/", views.webhook, name="webhook"), ]