django-helpdesk/helpdesk/orm_operators.py

8 lines
162 B
Python

from django.db.models.lookups import In
class NotIn(In):
lookup_name = "not_in"
def get_rhs_op(self, connection, rhs):
return "NOT IN %s" % rhs