我需要在 Foo 管理员中显示 Bar ,例如TabularInline,但前提是 lorem_ipsum 为真。
示例:
class Foo(models.Model):
lorem_ipsum = models.BooleanField(...)
class Bar(models.Model):
Foo_obj = models.ForeignKey(Foo, relatet_name='foo_obj')
...
可以在管理员中进行吗?
聚苯乙烯。我不想为每个代理使用代理和覆盖queryset()。