|
|
|
|
@ -38,14 +38,13 @@ urlpatterns = [ |
|
|
|
|
re_path(r'^contact-us/', include(('contact_us.urls', 'contact_us'), namespace='contact_us')), |
|
|
|
|
|
|
|
|
|
re_path(r'^products/', include(('products.urls', 'products'), namespace='products')), |
|
|
|
|
re_path(r'^cabinet/', include(('cabinet.urls', 'cabinet'), namespace='cabinet')) |
|
|
|
|
re_path(r'^cabinet/', include(('cabinet.urls', 'cabinet'), namespace='cabinet')), |
|
|
|
|
|
|
|
|
|
re_path(r'^cart/', include(('cart.urls', 'cart'), namespace='cart')), |
|
|
|
|
|
|
|
|
|
# re_path(r'^cart/', include('cart.urls', namespace='cart')), |
|
|
|
|
# |
|
|
|
|
# re_path(r'^order/', include('orders.urls', namespace='orders')), |
|
|
|
|
# re_path(r'^discount/', include('discount.urls', namespace='discount')), |
|
|
|
|
# re_path(r'^landing/', include('landing.urls')), |
|
|
|
|
# re_path(r'^products/', include('products.urls', namespace='products')), |
|
|
|
|
# re_path(r'^', include('orders.urls',namespace='orders')), |
|
|
|
|
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) \ |
|
|
|
|
+ static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) |
|
|
|
|
|