dynamic-routing

Dynamic URL Routing Django

Dynamic URL Routing Django Question: I Created a dynamic url routing/views for each one of the product on my website, Everything is working fine until I go to Cart/checkout and it loads on of the product page currently in Cart instead of Cart.html and Checkout.html urlpatterns = { path(‘<str:pk>/’, views.dynamic_product_view, name=’productdetail’), } views.py: def dynamic_product_view(request, …

Total answers: 2