add empty cart button

#161
This commit is contained in:
FlaviaBastos
2016-11-18 09:52:20 -07:00
committed by Raphael Michel
parent b64fef4b08
commit 8118423153
3 changed files with 52 additions and 12 deletions

View File

@@ -14,6 +14,7 @@ import pretix.presale.views.user
event_patterns = [
url(r'^cart/add$', pretix.presale.views.cart.CartAdd.as_view(), name='event.cart.add'),
url(r'^cart/remove$', pretix.presale.views.cart.CartRemove.as_view(), name='event.cart.remove'),
url(r'^cart/removeall$', pretix.presale.views.cart.CartRemoveAll.as_view(), name='event.cart.remove.all'),
url(r'^checkout/start$', pretix.presale.views.checkout.CheckoutView.as_view(), name='event.checkout.start'),
url(r'^redeem$', pretix.presale.views.cart.RedeemView.as_view(),
name='event.redeem'),