我需要通過名或姓搜索用戶表過濾。 給定用戶John Doe Smith,其中John是First Name,Doe Smith是Last Name。 當我搜索約翰史密斯時,它應該找到上面的用戶。 我知道它只是貫徹this SO answer解決的問題,但如何我這樣做,在django-filter,並保持其他篩選字段像email或phone也? patient.py(只有相關的部分) class P
我已經兩個模型這樣定義: class House(models.Model):
# all the fields here
def capacity(self):
capacity = 0
for room in self.rooms.all():
capacity += room.capacity
return capaci