Ajith P Mohan

Results 1 comments of Ajith P Mohan

Hi, I also have duplicate content issue. ``` store_admin/views.py ---------------------------- class StoreProductListView(AjaxListView): template_name = 'store_admin/product_list.html' page_template = 'store_admin/product_list_page.html' context_object_name = 'products' def get_queryset(self, **kwargs): return Product.objects.all().order_by('id') store_admin/product_list.html --------------------------------------- {% paginate...