[Answer]-Template doesn't recognize url name

1👍

You just change the category url like this

category

url(r'^category/(?P<cat>[^/]+)/$', 'reviews.views.category', name='category'),
#produt
url(r'^(?P<slug>[^/]+)/$', 'reviews.views.single_product', name='product_detail'),

Leave a comment