** URl : **
path('products_filter/', views.products_filter, name='products_filter'),
** VIEW :**
def products_filter(request):
product = request.GET.get('product')
selling = request.GET.get('selling')
products = Product.objects.filter(selling='best_seller')
return render(request, 'product/products.html', {'products':products})
** TEMPLATE : **
<a href="/product/products_filter?product={{'carpet'|urlencode}}&selling={{'best_seller'|urlencode}}">