Cancel orders (fixing #24)

This commit is contained in:
Raphael Michel
2015-03-12 23:35:55 +01:00
parent 7666d04580
commit ff7d4683a6
4 changed files with 83 additions and 10 deletions

View File

@@ -21,6 +21,8 @@ urlpatterns = patterns(
name='event.checkout.confirm'),
url(r'^order/(?P<order>[^/]+)/$', pretix.presale.views.order.OrderDetails.as_view(),
name='event.order'),
url(r'^order/(?P<order>[^/]+)/cancel$', pretix.presale.views.order.OrderCancel.as_view(),
name='event.order.cancel'),
url(r'^login$', pretix.presale.views.event.EventLogin.as_view(), name='event.checkout.login'),
)
)),