如何创建查询以聚合django中所有分支的所有员工?

时间:2011-11-17 11:34:53

标签: django

class Branch(Model):
    pass

class Staff(Model):
    company = models.ForeignKey('Branch', related_name="employees")

我想将所有分支的Staff组合到一个ModelChoiceField中。 如何将每个分支的所有人员组合成一个QuerySet,我将传递给ModelChoiceField?

0 个答案:

没有答案