我有以下型号:
class DecompositionGoal(Model):
id = UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
parent = ForeignKey(Goal, related_name='related_src')
child = ForeignKey(Goal, related_name='related_dst')
在Goal
模型中,有一个布尔字段is_quantitative
。
对于给定的parent
,我想为每个is_quantitative
更改child
字段。
不知道如何应用inlineformset
。
完成此任务有哪些方法?