Django formset:show forms

时间:2017-08-01 15:04:56

标签: django django-models django-forms formset inline-formset

我有以下型号:

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

完成此任务有哪些方法?

0 个答案:

没有答案