Basic confirmation page

This commit is contained in:
Raphael Michel
2015-03-06 23:57:09 +01:00
parent e57b23e616
commit 2acc653807
6 changed files with 89 additions and 4 deletions

View File

@@ -16,6 +16,8 @@ urlpatterns = patterns(
url(r'^checkout$', pretix.presale.views.checkout.CheckoutStart.as_view(), name='event.checkout.start'),
url(r'^checkout/payment$', pretix.presale.views.checkout.PaymentDetails.as_view(),
name='event.checkout.payment'),
url(r'^checkout/confirm$', pretix.presale.views.checkout.OrderConfirm.as_view(),
name='event.checkout.confirm'),
url(r'^login$', pretix.presale.views.event.EventLogin.as_view(), name='event.checkout.login'),
)
)),