Coverage for /home/tribaal/workspace/django-shop/shop/urls/__init__ : 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
# -*- coding: utf-8 -*-
url(r'^$', ShopTemplateView.as_view(template_name="shop/welcome.html"), name='shop_welcome'), (r'^pay/', include('shop.payment.urls')), (r'^ship/', include('shop.shipping.urls')), (r'^orders/', include('shop.urls.order')), (r'^checkout/', include('shop.urls.checkout')), (r'^cart/', include('shop.urls.cart')), (r'^products/', include('shop.urls.catalog')), ) |