context = {}
product = get_object_or_404(Product, slug=product_slug)
albom = ProductAlbomImages.objects.filter(product=albom_id)
category = Category.objects.filter(slug=product_slug)
top_five_products = Product.objects.all().exclude(slug=product_slug)
top_five_products_category = Product.objects.filter()
context['product'] = product
context['albom'] = albom
context['category'] = category
context['top_five_products'] = top_five_products
context['top_five_products_category'] = top_five_products_category
return render(request, 'shop/product-details.html', context)
как для переменной top_five_products_category получить список товаров данной категории?
во первых код в сервисы согласно правилу во вторых покажи код моделей в третьих почему категорияю получается по слагу продукта и почему получается список
Обсуждают сегодня