Views.py
matching_product = Product.objects.filter(shop__shop_slug=single_slug)
return render(request, 'products/shop_products.html',{"part_ones":matching_product})
urls.py
path("<single_slug>",views.single_slug, name="single_slug")
shop_products
{% for shops in matching_product %}
shop. html (для URL) <a href="{{shop.shop_slug}}"><strong>{{shop.shop_location}}</strong></a>
Не отображается ни одна продукция