ecommerce/carts/urls.py
2018-09-10 23:16:35 +03:00

11 lines
332 B
Python

from .views import cart_home, cart_update, checkout_home, checkout_done
from django.conf.urls import url
urlpatterns = [
url("^$", cart_home, name="home"),
url("^checkout/$", checkout_home, name="checkout"),
url("^update/$", cart_update, name="update"),
url("^checkout/success/$", checkout_done, name="success")
]