3👍
✅
You can make use of exclude():
Customers.objects.exclude(status__in=[1,2])
or
Customers.objects.filter(whatever=whatever).exclude(status__in=[1,2])
Source:stackexchange.com