标签: django
class Branch(Model): pass class Staff(Model): company = models.ForeignKey('Branch', related_name="employees")
我想将所有分支的Staff组合到一个ModelChoiceField中。 如何将每个分支的所有人员组合成一个QuerySet,我将传递给ModelChoiceField?
Staff