У меня есть эти модели:
def Foo(Models.model):
size = models.IntegerField()
# other fields
def is_active(self):
if check_condition:
return True
else:
return False
def Bar(Models.model):
foo = models.ForeignKey("Foo")
# other fields
Теперь я хочу запросить бары, которые имеют активный Foo как таковой:
Bar.objects.filter(foo.is_active())
Я получаю ошибку, например
SyntaxError at /
('non-keyword arg after keyword arg'
Как я могу это достичь?