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
CheckoutSelectionView, PaymentBackendRedirectView, ShippingBackendRedirectView, OrderConfirmView, ThankYouView, )
url(r'^$', cart_required(CheckoutSelectionView.as_view()), name='checkout_selection' # first step of the checkout process ), url(r'^ship/$', ShippingBackendRedirectView.as_view(), name='checkout_shipping' # second step of the checkout process ), url(r'^confirm/$', OrderConfirmView.as_view(), name='checkout_confirm' # third step of the checkout process ), url(r'^pay/$', PaymentBackendRedirectView.as_view(), name='checkout_payment' # fourth step of the checkout process ), url(r'^thank_you/$', ThankYouView.as_view(), name='thank_you_for_your_order' # final step of the checkout process ), ) |