[Fixed]-Is it possible to filter foreignkeys with a queryset? Django

1👍

l is a queryset, not a single object, so you should do something like that:

Reviews.objects.filter(location__in=l)

Leave a comment