Объекты фильтрации Django
У меня возникла проблема с Product.objects
def say_hello(request):
queryset = Product.objects.filter(collection__id=1)
return render(request, ‘hello.html’, {‘name’: ‘Mosh’, ‘products’: list(queryset)})
Я получаю Ошибку: Unresolved attribute reference 'objects' for class 'Product'.:6
Выдает отсутствие списка: http://127.0.0.1:8000/playground/hello/
<