Reputation: 2129
Suppose you have a query set in Django how does one filter it, given that
queryset.objects.filter(condition)
doesn't work?
Upvotes: 0
Views: 56
Reputation: 22914
You should be able to do queryset = queryset.filter(condition) See the QuerySet API
queryset = queryset.filter(condition)
Upvotes: 2