1👍
✅
l is a queryset, not a single object, so you should do something like that:
Reviews.objects.filter(location__in=l)
Source:stackexchange.com
1👍
l is a queryset, not a single object, so you should do something like that:
Reviews.objects.filter(location__in=l)