From 86c04e60b932b8051cde013396aec84a35eff871 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Thu, 13 May 2021 00:03:23 +0300 Subject: Django 3 fixes --- servo/views/product.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'servo/views/product.py') diff --git a/servo/views/product.py b/servo/views/product.py index 4c7f96f..47b9018 100644 --- a/servo/views/product.py +++ b/servo/views/product.py @@ -82,7 +82,7 @@ def tags(request): Returns all product tags """ from servo.lib.utils import json_response - tags = TaggedItem.objects.filter(content_type__model="product") + tags = TaggedItem.objects.filter(ref="product") tags = tags.distinct("tag").values_list("tag", flat=True) return json_response(list(tags)) -- cgit v1.2.3