3👍
✅
You can use the values_list
method instead:
select = product.models.Product.objects.latest('id').selection.values_list('Make', flat=True)
Source:stackexchange.com