Coverage for /home/tribaal/workspace/django-shop/shop/urls/checkout : 100.00%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# SelectPaymentView, # SelectShippingView, CheckoutSelectionView, PaymentBackendRedirectView, ShippingBackendRedirectView, ThankYouView, )
url(r'^$', CheckoutSelectionView.as_view(), name='checkout_selection' # First step of the checkout process ), #url(r'^checkout/ship/$', SelectShippingView.as_view(), # name='checkout_shipping' # First step of the checkout process # ), url(r'^ship/$', ShippingBackendRedirectView.as_view(), name='checkout_shipping' # First step of the checkout process ), #url(r'^checkout/pay/$', SelectPaymentView.as_view(), # name='checkout_payment' # Second step of the checkout process # ), url(r'^pay/$', PaymentBackendRedirectView.as_view(), name='checkout_payment' # First step of the checkout process ), url(r'^thank_you/$', ThankYouView.as_view(), name='thank_you_for_your_order' # Second step of the checkout process ), ) |